Merge: Vim omnifunc for Nit
authorJean Privat <jean@pryen.org>
Sat, 7 Feb 2015 13:43:24 +0000 (20:43 +0700)
committerJean Privat <jean@pryen.org>
Sat, 7 Feb 2015 13:43:24 +0000 (20:43 +0700)
commitade7bf383f1236cf4018103d9d403e7853308f40
tree56f55f74ec5df0f5570c74cf18f319f084c5234f
parentf9c9c25e9dd4675a020b495c9f5a3a6f52691872
parenta08eadd0b85131c98691823b264b09404d727b68
Merge: Vim omnifunc for Nit

Alternative autocompletion for Nit. This one is triggered by a call to
the omnitfunc, usually `ctrl-x ctrl-o`. It will show context
appropriated modules, classes and properties. It shows all properties,
but it does not use static types to show the methods available on the
specific receiver. It also displays some doc!

It uses `nitpick` to generate metadata files analyzed by the Vim plugin.
So in combination with `syntastic`, each time you save, and the program
is valid, it updates the metadata files.

Pull-Request: #1146
Reviewed-by: Jean Privat <jean@pryen.org>
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>
Reviewed-by: Alexandre Terrasa <alexandre@moz-code.org>