An open API service indexing awesome lists of open source software.

https://github.com/damnever/completor-elixir

Elixir code completion for Vim.
https://github.com/damnever/completor-elixir

code-completion elixir elixir-lang vim-plugin

Last synced: 3 months ago
JSON representation

Elixir code completion for Vim.

Awesome Lists containing this project

README

          

## Elixir code completion for Vim

Based on [completor.vim](https://github.com/maralla/completor.vim).

### Install

Here, I am using [vim-plug](https://github.com/junegunn/vim-plug):
```
Plug 'maralla/completor.vim'
Plug 'damnever/completor-elixir', { 'do': 'make' }
```

In case of package manager has no post-update hooks, run the following commands to resolve deps:
```
cd /path/to/plugin/completor-elixir
make
```

### Short Keys

Add the following lines to your `.vimrc`:
```
" jump to definition
noremap jd :call completor#do('definition')
" show document
noremap :call completor#do('doc')
```