Skip to content

damnever/completor-elixir

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Elixir code completion for Vim

Based on completor.vim.

Install

Here, I am using 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 <leader>jd :call completor#do('definition')<CR>
" show document
noremap <s-k> :call completor#do('doc')<CR>