2
votes
2answers
96 views
Get offset of current buffer in vim (in particular, via python scripting)
Hi,
i want to get the offset of
the current cursor position
the current selection range
in vim, beginning from the start of the file. I do this in python, so hints how to do …
2
votes
3answers
128 views
Substituting zero-width match in vim script
I have written this script that replaces many spaces around the cursor with one space. This however doesn't work when I use it with no spaces around the cursor. It seems to me that …
1
vote
1answer
193 views
VIM: Use python 2.5 with vim 7.2
How can use Python2.5 with to write scripts in vim? I'm using vim 7.2 and have Python 2.5. Vim 7.2 seem to be linked with Python 2.4
Do I have to compile from source?
0
votes
0answers
36 views
Printing source-level scope variables at vim debugger prompt
Hi,
I am using vim debugger for debugging vim scripts [BreakPts].
:BreakPts //will create a new window and populates it with the list of vim functions available/loaded.
We can c …
0
votes
2answers
213 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 …
