Tagged Questions
2
votes
1answer
31 views
Vim: Wrap a plugin mapping with my own expression
I have a plugin which has the following mapping:
:i <CR> <CR><Plug>DiscretionaryEnd
I'd like to also create my own expression for <CR> which falls through to this ...
0
votes
2answers
79 views
Set color of quickfix arrow in Vim buffer
When I commit the cardinal sin of using == instead of ===, Vim, or its minions of scripts, opens up the quick fix window with some useful tips. Using vim-hier, I have the incorrect line highlighted ...
0
votes
2answers
2k views
Vundle for VIM is not working on Ubuntu
I installed Vundle via the instructions given at this blog http://www.charlietanksley.net/philtex/sane-vim-plugin-management/
but when trying to run :BundleInstall I get a VIM error
E492: Not an ...
2
votes
1answer
83 views
Vimscript - run normal! qm after running normal! @m
So, this is a weird situation I've run into while trying to write a plugin. It looks like a bug in Vim to me, but I might be missing something, so I've turned to the wisdom of StackOverflow.
Take ...
8
votes
1answer
223 views
Improved jumps to definition
When we're using ctags in vim and want to go to particular definition of variable or function we press ctrl + ], when we want to go back we press ctrl + T.
When we want to autocomplete a name of a ...
1
vote
1answer
74 views
5
votes
3answers
218 views
What are some good resources for learning to develop VIM plugins?
I am learning VIM and would like to try to hack on some VIM plugins, but can't seem to find any resources for learning the scripting language. It seems like its called VIMscript, but I'm finding ...