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.
- Host: GitHub
- URL: https://github.com/damnever/completor-elixir
- Owner: damnever
- License: mit
- Created: 2018-02-22T13:41:14.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-08T15:41:23.000Z (almost 8 years ago)
- Last Synced: 2025-03-12T16:26:05.213Z (about 1 year ago)
- Topics: code-completion, elixir, elixir-lang, vim-plugin
- Language: Elixir
- Homepage:
- Size: 1.1 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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')
```