|
| 1 | +--- |
| 2 | +layout: post |
| 3 | +title: "Project status" |
| 4 | +date: 2014-03-18 20:10:38 |
| 5 | +categories: |
| 6 | +--- |
| 7 | + |
| 8 | +## Our projects |
| 9 | + |
| 10 | +We now have quite a few projects in the [vim-erlang organization][vim-erlang]: |
| 11 | + |
| 12 | +- [vim-erlang-runtime][vim-erlang-runtime] is the Erlang syntax and indentation |
| 13 | + built into Vim. |
| 14 | +- [vim-erlang-compiler][vim-erlang-compiler] is an Erlang syntax checking and |
| 15 | + compiler plugin for Vim. It can perform on-the-fly syntax checks (utilising |
| 16 | + signs) and gives Erlang support to the `:make` command. |
| 17 | +- [vim-erlang-omnicomplete][vim-erlang-omnicomplete] is an Erlang autocomplete |
| 18 | + plugin which gives Erlang support to the `i_CTRL-X_CTRL-O` keystroke. |
| 19 | +- [vim-erlang-tags][vim-erlang-tags] is Erlang ctags-file generator plugin which |
| 20 | + makes Vim able to jump to definitions of functions, records, etc. by using the |
| 21 | + `CTRL-]`, `:tags`, and other commands. |
| 22 | + |
| 23 | +## Installing all projects |
| 24 | + |
| 25 | +1. Install the Vim plugin called [pathogen][pathogen], which helps installing |
| 26 | + further plugins. |
| 27 | + |
| 28 | +2. Clone all repositories: |
| 29 | + |
| 30 | +{% highlight bash %} |
| 31 | +cd ~/.vim/bundle |
| 32 | +git clone [email protected]:vim-erlang/vim-erlang-runtime.git |
| 33 | +git clone [email protected]:vim-erlang/vim-erlang-compiler.git |
| 34 | +git clone [email protected]:vim-erlang/vim-erlang-omnicomplete.git |
| 35 | +git clone [email protected]:vim-erlang/vim-erlang-tags.git |
| 36 | +{% endhighlight %} |
| 37 | + |
| 38 | +3. Generate help files: |
| 39 | + |
| 40 | +{% highlight vim %} |
| 41 | +:Helptags |
| 42 | +{% endhighlight %} |
| 43 | + |
| 44 | +Help pages are available via the `:help` command, e.g. `:help |
| 45 | +vim-erlang-compiler`. |
| 46 | + |
| 47 | +[vim-erlang]: https://github.com/vim-erlang |
| 48 | +[vim-erlang-runtime]: https://github.com/vim-erlang/vim-erlang-runtime |
| 49 | +[vim-erlang-compiler]: https://github.com/vim-erlang/vim-erlang-compiler |
| 50 | +[vim-erlang-omnicomplete]: https://github.com/vim-erlang/vim-erlang-omnicomplete |
| 51 | +[vim-erlang-tags]: https://github.com/vim-erlang/vim-erlang-tags |
| 52 | +[pathogen]: https://github.com/tpope/vim-pathogen#installation |
0 commit comments