I see in the docs that I can map a key to call the find and store actions, but I actually don't want a hotkey to trigger this plugin, and instead I want use a commandline command, i.e. something like :Macrofind from Normal mode which would call the marvim find action.
What's the best way to do this in my .vimrc?
It looks like you actually call two commands internally
|
if g:marvim_use_find_key && !empty(g:marvim_find_key) |
so would I also need to call both commands if I made a custom mapping? Is there an easier way to define a custom mapping where I can just call one internal marvim command?