Home

Awesome

Vimix

vimux with Elixir mix integration

Installation

Put the contents of this directory into your pathogen bundle.

Usage

Vimix provides a number of available commands for common Mix tasks, so that you never have to leave your Vim session. Key mappings are disabled by default, but can easily be enabled by setting the following in your .vimrc:

let g:vimix_map_keys = 1

If you'd like run your tests in the context of IEx or change the way tests are run in other ways, you can customize the mix command like so:

let g:vimix_mix_command = "iex -S mix"

The default is just mix.

Features

Commands

Here are the key mappings for your reference:

Key MapVim CommandMix Command
<Leader>mTVimixTestAlltest
<Leader>mtVimixTestCurrentFiletest <test file>
<Leader>mlVimixTestCurrentLinetest <test file>:<test line>
<Leader>mcVimixCompilecompile
<Leader>mCVimixCleanclean
<Leader>mdcVimixDepsCompiledeps.compile
<Leader>mdgVimixDepsGetdeps.get
<Leader>mdsVimixDepsStatusdeps
<Leader>mdUVimixDepsUpdatedeps.update
<Leader>mLVimixLocallocal
<Leader>mrVimixPromptRun<prompt for mix command>
<Leader>mmVimuxRunLastCommandRun last command again

Requirements

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request