]>
Commit | Line | Data |
---|---|---|
41d7b8b0 BB |
1 | # API Notation Syntax for Vim |
2 | ||
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. | |
5 | ||
d047e007 BB |
6 | ## Installing |
7 | ||
8 | Install with pathogen: | |
9 | ||
10 | 1. Clone the repo or copy the files to your `.vim/bundle` dir | |
11 | 2. Reload the vim | |
12 | 3. Enjoy the vim | |
13 | ||
41d7b8b0 BB |
14 | ## API Notation Reference |
15 | ||
59d97d8e | 16 | The most recent reference as of now is in this [text file][api-reference], so |
41d7b8b0 BB |
17 | check that to be sure. But here's a reproduction of the notation. |
18 | ||
19 | ``` | |
d5fd8b33 | 20 | NameOfClass.WithPossibleNamespace |
41d7b8b0 BB |
21 | + class property |
22 | - instance property | |
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) | |
29 | :: class method | |
30 | # instance method | |
31 | ||
32 | Other symbols | |
33 | => returns | |
34 | ->() callback return | |
35 | [xx] optional | |
36 | <xx> data type | |
37 | ||
38 | Recommended order: class first, then sockets, then instance. Internally: | |
39 | Properties, events, methods. | |
d5fd8b33 BB |
40 | |
41 | // Anything after two forward slashes is a comment | |
41d7b8b0 BB |
42 | ``` |
43 | ||
44 | ## How does it look like? | |
45 | ||
46 | Like this. | |
47 | ||
48 | ![Like this.][api-example] | |
49 | ||
b201df0f | 50 | [api-reference]: https://gitlab.com/rbdr/txt/-/blob/main/reference/api_notation.md |
81f525f7 | 51 | [api-example]: https://i.imgur.com/OreLcmE.png |