1 # API Notation Syntax for Vim
3 This is a syntax for api notation, a simple notation I've been using for
4 annotating module APIs in specs and other documents.
10 1. Clone the repo or copy the files to your `.vim/bundle` dir
14 ## API Notation Reference
16 The most recent reference as of now is in this [gist][api-reference], so
17 check that to be sure. But here's a reproduction of the notation.
23 ~> listened events (socket)
24 +> listened events (class/module)
25 -> listened events (instance)
26 <~ dispatched events (socket)
27 <+ dispatched events(class/module)
28 <- dispatched events (instance)
38 Recommended order: class first, then sockets, then instance. Internally:
39 Properties, events, methods.
42 ## How does it look like?
46 ![Like this.][api-example]
48 [api-reference]: https://gist.github.com/benbeltran/4694c46fcec131468e34
49 [api-example]: http://ns.vc/1gXwQ.png