Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gravityblast/vimux-elixir
run elixir tests in vim
https://github.com/gravityblast/vimux-elixir
Last synced: about 9 hours ago
JSON representation
run elixir tests in vim
- Host: GitHub
- URL: https://github.com/gravityblast/vimux-elixir
- Owner: gravityblast
- License: mit
- Created: 2016-02-20T16:45:40.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-02-20T16:50:44.000Z (over 8 years ago)
- Last Synced: 2023-04-11T01:06:01.555Z (over 1 year ago)
- Language: VimL
- Size: 1.95 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vimux-elixir
Run elixir tests in vim.
![vimux-elixir](http://g.recordit.co/vN3WbmrCkL.gif)
## Dependencies
* [vimux](https://github.com/benmills/vimux)
## Installation
If you use Vundle add this line to your `.vimrc` file:
Plugin 'pilu/vimux-elixir'
# with an older vundle version you would need to use Bundle
# Bundle 'pilu/vimux-elixir'## Commands
Running all tests:
:ElixirTestAll
Running tests for current file:
:ElixirTestFile
Running test for current line:
:ElixirTestFocused
## Mapping
Put the following configuration in you `~/.vim/ftplugin/elixir.vim` file:
```viml
map ra :wa :ElixirTestAll
map rf :wa :ElixirTestFile
map rt :wa :ElixirTestFocused
```