... I can reproduce this on Vim 7.2.148. After the steps mentioned, three windows are visible, like this ... with the following numbers displayed: left (top)...
Tony Mechelynck
antoine.mechelynck@...
Apr 1, 2009 9:26 am
102965
... [...] ... I'm using the following since that option appeared in Vim 7.00aa alpha, and it has suited me quite well since then: if exists("+guioptions") set...
Tony Mechelynck
antoine.mechelynck@...
Apr 1, 2009 9:56 am
102966
The April edition of the Vim Tips Main Page is now available: http://vim.wikia.com/wiki/Main_Page The "From Vim Help" section deserves some care this month. ...
John Beckett
johnb.beckett@...
Apr 1, 2009 10:04 am
102967
Dear Vim users, I would like to have an automatic tab stop feature, while editing tabular data. Let's say I'm editing this data: one^Iplus^Ione two^Iminus^Itwo...
Tobia Conforto
tobia.conforto@...
Apr 1, 2009 10:05 am
102968
Hi, since on my laptop there is limited size, I use :vsp together with a BufEnter function which does vertical resize the current window. So each time I place...
fkater@...
Apr 1, 2009 10:06 am
102969
... From :help autocmd-events BufEnter After entering a buffer. Useful for setting options for a file type. Also executed when starting to edit a buffer,...
Tobia Conforto
tobia.conforto@...
Apr 1, 2009 10:13 am
102970
... Not necessarily that helpful, but number 19 in the Vim voting results [1] is: "add flexible tab stops, can be used for tables" I've voted for this, so all...
A. S. Budden
abudden@...
Apr 1, 2009 10:13 am
102971
... I'm confirming this in gvim 7.2.148 on openSUSE Linux 11.1. I suspect it is related to the bug investigated in the thread "How to redraw the whole Vim...
Tony Mechelynck
antoine.mechelynck@...
Apr 1, 2009 10:24 am
102972
... ;-) Felix --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit...
fkater@...
Apr 1, 2009 11:17 am
102973
... You've gotten a couple of specific suggestions (for a URL). In the general case, if you don't want to go through defining your own text object every time,...
Ben Fritz
fritzophrenic@...
Apr 1, 2009 2:03 pm
102974
when I have buffers open and I switch between them, I have noticed that I lose the ability to undo changes in these buffers. In other words, doing 'u' does not...
Reckoner
reckoner@...
Apr 1, 2009 3:33 pm
102975
... Do you have 'hidden' set? ... This should preserve your undo history. I tried digging around in the help to find supporting documentation, but couldn't...
Tim Chase
vim@...
Apr 1, 2009 3:58 pm
102976
function! Add_line() call append(0 , "This is a new line") endfunction imap <F1> <ESC>:call Add_line()<CR> The above script gets executed and now I am in...
Spiros Bousbouras
spibou@...
Apr 1, 2009 4:12 pm
102977
... You should be able to insert an undo-break, curtly described at ... so you'd do something like imap <f1> <c-g>u<esc>:call Add_line()<cr> Hope this helps, ...
Tim Chase
vim@...
Apr 1, 2009 4:18 pm
102978
On 01/04/09 00:07, Dotan Cohen wrote: [Gene Kwiecinski wrote] [...] ... In [http://www.example.net/somewhere/something.html MediaWiki external links],...
Tony Mechelynck
antoine.mechelynck@...
Apr 1, 2009 4:19 pm
102979
... At worst, I suppose it is always possible (though not necessary convenient) to use the Google Groups web interface. However, my standpoint towards company...
Tony Mechelynck
antoine.mechelynck@...
Apr 1, 2009 5:00 pm
102980
Ok, so I want to repeat a previous :command. Someone in the IRC channel told me to use @:, which makes sense. When I *did* try to do @: nothing happened. I...
fREW Schmidt
frioux@...
Apr 1, 2009 5:14 pm
102981
... Can you share the content of the command line that you're trying to execute? I use this all the time. You might also check your build of Vim? There was a...
Tim Chase
vim@...
Apr 1, 2009 5:20 pm
102982
... It's not automatic, but I use Dr. Chip Campbell's Align plugin for this sort of thing. The \tsp and friends macros are particularly useful for this sort of...
Brett Stahlman
brettstahlman@...
Apr 1, 2009 5:27 pm
102983
... Indeed. Instead of Ctrl-1, which is not portable, not ASCII, and unknown to Vim's "cooked" input mode, you may want to map one of the following nearby keys...
Tony Mechelynck
antoine.mechelynck@...
Apr 1, 2009 5:30 pm
102984
... Not only curtly described but also it doesn't appear in the "undo" part of the documentation where I was looking for an answer to my problem. ... This...
Spiros Bousbouras
spibou@...
Apr 1, 2009 5:36 pm
102985
... I have autowriteall set. I tried setting hidden and although it does preserve undo history it no longer automatically saves the buffer when I move away...
Spiros Bousbouras
spibou@...
Apr 1, 2009 5:49 pm
102986
... I agree...I learned about it here on the mailing-list thanks to Yakov Lerner[1]. I support the suggestion of somehow making cross-reference to it within...
Tim Chase
vim@...
Apr 1, 2009 5:58 pm
102987
... s/\(\w\+\)\s\+/\1 ... 7.2 ... If I can do :<Up> then I do right? Because I can... Could it be something weird with my vim configuration? I use @<foo> all...
fREW Schmidt
frioux@...
Apr 1, 2009 6:30 pm
102988
... The following are actual examples copied from my vimrc: map <F9> <C-]> " using F9, a 'safe' mapping, because my keyboard doesn't " gracefully handle...
Tony Mechelynck
antoine.mechelynck@...
Apr 1, 2009 6:31 pm
102989
... gvim interfaces differetly with the keyboard. On Windows, I'm not sure what the difference is, but I guess Windows delivers different bytecodes for...
Tony Mechelynck
antoine.mechelynck@...
Apr 1, 2009 6:46 pm
102990
... It looks kosher, leading me to believe it may be some funky mapping/abbrv you have in place. Do you experience the same problem when you start with vim -u...
Tim Chase
vim@...
Apr 1, 2009 6:58 pm
102991
... If I do have to define an autocommand will the following have the same effect as having autowriteall set ? autocmd BufLeave * :update ...
Spiros Bousbouras
spibou@...
Apr 1, 2009 7:04 pm
102992
Is it possible to sort the buffer list in Vim? I commonly work with 10-20 files open. They tend to be groups of files from different paths within my project....
guwegezo
douglas.royds@...
Apr 1, 2009 8:08 pm
102993
... I have this in my .vimrc, to create undo blocks on the rare occasions ... I'm not sure in what other contexts this could be used. ...