Tagged Questions
7
votes
3answers
303 views
Vim step-by-step: How do you line up arbitrary text by arbitrary delimiter?
Background:
There are a lot of great tutorials and "tricks" pages for Vim, but one thing that is very difficult is to find specific instructions on how to do some arbitrary thing that one can easily ...
2
votes
3answers
103 views
No more messing up whitespace in VIM
I have an BufWritePre hook added to my .vimrc that trims trailing whitespace before a buffer is saved. This is very convenient for me when editing my own code or that of others who also have a policy ...
0
votes
2answers
135 views
How to create a “new mode” for vim (i.e., loop and get user input, then execute the associated actions)
I'm trying to create something of a "new mode" in vim. The details of the mode are unimportant, but there is one thing I need to be able to do.
I need to do something like the following pseudo-code:
...
0
votes
2answers
848 views
Vim visual mode scripting: searching the text surrounding the visual selection
I'll try to explain by example..
If we have a piece of code like this in vim:
if ($feck == true && $drink == false)
{
echo 'They lie in wait like wolves..';
}
And I go to visual mode ...