Tagged Questions
0
votes
3answers
145 views
Vim - How do I show a helpful error message when using the arrow keys in insert mode?
I'm trying to stop using the arrow keys in vim. But instead of setting them to <nop>, as other people do, I want them to show an error message. This does the thing in normal mode:
noremap ...
1
vote
1answer
83 views
vim gf with resource://
I'm working on some Firefox extensions and I'm trying to set up my vim to open modules using the gf keys.
An inclusion looks like this:
...
1
vote
1answer
63 views
Preventing redefining existing buffer mapping
I want to prevent *noremap command from remapping an existing sequence, but only if this sequence is local to buffer:
noremap a b
" Will fail, must succeed
noremap <buffer> <unique> a c
...