This tool is for moving in common File structures. The most common use case is to switch between implementation and test file.
Use your favorite plugin manager.
- Add
Plug 'micmine/jumpwire.nvim'
to init.vim - Run
:PlugInstall
- Follow the guide in config.md
- Add shortcuts
noremap <leader>mt :lua require('jumpwire').jump('test')<CR>
noremap <leader>mi :lua require('jumpwire').jump('implementation')<CR>
noremap <leader>mm :lua require('jumpwire').jump('markup')<CR>
noremap <leader>ms :lua require('jumpwire').jump('style')<CR>