An autojump source for denite.nvim.
For vim-plug, add:
Plug 'shougo/denite.nvim'
Plug 'sunjon/denite-autojump'
to your .vimrc
and run :PlugInstall
and :UpdateRemotePlugins
after
a restart.
Note: denite.nvim requires python3+.
Make sure has('python3')
returns true, and run:
pip3 install neovim
before you install any neovim remote plugin.
Run :CheckHealth
if you encounter any issues.
Create a key bind in your .vimrc. eg:
nnoremap <silent> <Leader>p :Denite autojump<Cr>
autojump
-cd
to selected path. Default action
-
g:autojump_command
Path to the autojump binary. (string)
default: /usr/local/bin/autojump
-
g:autojump_database
Path to the autojump.txt db. (string)
default: ~/Library/autojump/autojump.txt
-
g:autojump_register
Register the cd event with autojump. (bool)
default: 1
-
g:autojump_echo
Echo the cd event to the cmdline. (bool)
default: 1