Our projects
We now have quite a few projects in the vim-erlang organization:
- vim-erlang-runtime is the Erlang syntax and indentation built into Vim. We host the development version.
- vim-erlang-compiler is an Erlang syntax checking and
compiler plugin for Vim. It can perform on-the-fly syntax checks and gives
Erlang support to the
:make
command. - vim-erlang-omnicomplete is an Erlang autocomplete
plugin which gives Erlang support to the
i_CTRL-X_CTRL-O
keystroke. - vim-erlang-tags is Erlang ctags-file generator plugin which
makes Vim able to jump to definitions of functions, records, etc. by using the
CTRL-]
,:tags
, and other commands.
Installing all projects
Install the Vim plugin called pathogen, which helps installing further plugins.
Clone all repositories:
cd ~/.vim/bundle git clone git@github.com:vim-erlang/vim-erlang-runtime.git git clone git@github.com:vim-erlang/vim-erlang-compiler.git git clone git@github.com:vim-erlang/vim-erlang-omnicomplete.git git clone git@github.com:vim-erlang/vim-erlang-tags.git
Generate help files:
:Helptags
Help pages are available via the :help
command, e.g. :help
vim-erlang-compiler
.