jumpwire.nvim
jumpwire.nvim copied to clipboard
Jump easily between related files.
jumpwire
This tool is for moving in common File structures. The most common use case is to switch between implementation and test file.
Demo

Installation
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>