Jack in to Boot, Clj & Leiningen from Vim. Inspired by the feature in CIDER.el.
Depends on vim-dispatch to run commands in background. If you’re using Neovim I can recommend vim-dispatch-neovim
Plug 'tpope/vim-dispatch'
Plug 'clojure-vim/vim-jack-in'
" Only in Neovim:
Plug 'radenling/vim-dispatch-neovim'
Provides a couple of helper commands for "jacking" in to a Clojure REPL by auto-starting it. Highly inspired by CIDER.el’s feature by the same name.
These run inside the directory vim is currently in. In the future it would be
nice to run relative to the current file.
To run boot & lein, dispatch-:Start
is used with the bang option.
:Boot [args]
Start boot with CIDER-nrepl and Refactor-nrepl automatically injected.
[args] is a list of tasks to run in boot. If not provided,
g:default_boot_task
is used instead.
:Clj [args]
Start clj with CIDER-nrepl and Refactor-nrepl automatically injected. [args] is a list of options to run in clj. If not provided, no aditional options will be used.