... What's the result of 'apt-cache policy vim'? Norbert...
Norbert Tretkowski
tretkowski@...
Apr 1, 2005 9:04 am
57808
... well ... shame on me : there was a syntax error in my apt/preferences works fine now. thanks ! regards mc...
marc chantreux
marc.chantreux@...
Apr 1, 2005 9:49 am
57809
Hi, I'm trying to use Intellisense for VIM. (http://www.vim.org/scripts/script.php?script_id=747) I 've done all what is set in the intellisense.txt. One thing...
Eric Leenman
ELeenman@...
Apr 1, 2005 11:30 am
57810
YankRing.vim : Maintains a history of previous yanks and deletes http://www.vim.org/scripts/script.php?script_id=1234 description Vim already maintains a list...
David Fishburn
fishburn@...
Apr 1, 2005 1:36 pm
57811
I have mappings: inoremap { {<CR>}<C-O>O inoremap [ []<LEFT> inoremap ( ()<LEFT> inoremap " ""<LEFT> inoremap ' ''<LEFT> ...in my .vimrc. This all works fine...
antti
antti@...
Apr 1, 2005 2:45 pm
57812
I have a file that I want to do a search and replace for any lines that start with two (and only two) spaces followed by a non-space character and replace it...
Cory Riddell
criddell@...
Apr 1, 2005 5:51 pm
57813
... So close, yet just enough to mess things up. You *either* want "\S" or "[^ ]". Your current expression would find lines starting with two spaces followed...
Tim Chase
vim@...
Apr 1, 2005 5:59 pm
57814
... Cory, Take out the square brakets and add backslashes on the parens in other ... Scott LaBounty Nexa Technologies, Inc. ...
Scott LaBounty
slabounty@...
Apr 1, 2005 6:00 pm
57815
... You have to escape ( and ) used for submatching (unless there is some option I'm not aware of). The brackets around the non-space specifier are not...
t. scott urban
scottu@...
Apr 1, 2005 6:01 pm
57816
Thanks all for the amazingly quick replies. Cory...
Cory Riddell
criddell@...
Apr 1, 2005 6:06 pm
57817
... check the 'backspace' (and 'compatible') options. ... It is a Vim constant that the scrollbar allows scrolling until the _bottom_ line of the file is at...
A. J. Mechelynck
antoine.mechelynck@...
Apr 1, 2005 6:46 pm
57818
Things have definitely gotten better! Thanks! A couple more items that I just noticed are the use of repeat (using '.') commands of i, I, a, or A. As common...
Brent Rice
riceran@...
Apr 1, 2005 7:16 pm
57819
I've failed to see the reply :-( Thumbs up, Jürgen! Vielen Dank. ... __________________________________ Do you Yahoo!? Yahoo! Small Business - Try our new...
John Doe
johndoe9485@...
Apr 1, 2005 7:53 pm
57820
... If I write startinsert out of an autocommand (timing) handler, the insert mode will not kick in immediately, only after pressing a key. ...
John Doe
johndoe9485@...
Apr 1, 2005 7:58 pm
57821
Hello, I am new to this list, but not to Vim (however I still have much to learn). I have a problem making a syntax plugin for Redcode assembly files. I have a...
Alejandro Pulver
alejandro@...
Apr 1, 2005 8:43 pm
57822
... Sorry, meant to respond this morning. What language are you trying complete? Java C++ C# JSP XML HTML SQL By <C-Space-a> and <C-Space-f> I am assuming you...
David Fishburn
fishburn@...
Apr 1, 2005 8:59 pm
57823
9u049u89gh89fsdpokofkdpbm3ß4i...
eljay@...
Apr 2, 2005 11:18 am
57824
... Put space in syntax definition here (maybe zero-width) ... ^ \s\@<= And you can replace [0-9]\d* with \d\+ Note: I am never sure which zero-width operator...
Mikolaj Machowski
mikmach@...
Apr 2, 2005 12:27 pm
57825
On Sat, 2 Apr 2005 12:27:10 +0200 ... Hello, Thank you for your reply. I ended up with the following to match numbers (is it fine? can it be optimized?): /[...
Alejandro Pulver
alejandro@...
Apr 2, 2005 4:45 pm
57826
Hi, I would like to know how to tell vim that the STDIN will never end, so don't bother displaying Vim: Reading from stdin... but rather display immediately...
h200@...
Apr 2, 2005 5:30 pm
57827
I've got the latest taglist plugin installed on a debian box along with exuberant-ctags and vim 6.3. For a typical source code file, when :Tlist is invoked,...
Kevin Coyner
kevin@...
Apr 2, 2005 6:02 pm
57828
Hi, ... Did you try the steps mentioned in the following page? http://www.geocities.com/yegappan/taglist/faq.html - Yegappan...
Yegappan Lakshmanan
yegappanl@...
Apr 2, 2005 6:12 pm
57829
... \s matches any white-space character including tabs, so [ \s\t] can be replaced by just \s. m....
Mikolaj Machowski
mikmach@...
Apr 2, 2005 6:38 pm
57830
On Sat, 2 Apr 2005 20:23:46 +0200 ... Hello, Thank you for your reply. I tried /[#$@*<>{},\s]\@<=[-+]\?\d\+\|\d\+/ (\s instead of [ \t\s]) but if I have: dst:...
Alejandro Pulver
alejandro@...
Apr 2, 2005 6:48 pm
57831
On Sat, Apr 02, 2005 at 10:12:18AM -0800, Yegappan Lakshmanan wrote...... ... Thanks. Yes, I started there. That's where I found the ctags command listed ...
Kevin Coyner
kevin@...
Apr 2, 2005 6:56 pm
57832
... You cannot use \s (or any other class) inside of [] ... Here catches operator rule. [] is always one char. Try /\([#$@*<>{},]\s*\)\@<=[-+]\?\d\+\|\d\+/ ......
Mikolaj Machowski
mikmach@...
Apr 2, 2005 10:32 pm
57833
I have been using Ispell from the command line for some time now. Today I put in the vimspell plugin. Now I need to learn how to use it. For example when I...
John R. Culleton
john@...
Apr 3, 2005 12:43 am
57834
... Not sure about the vimspell thing, but to unfold all the folds in a file, do zR Godspeed, Brett -- Brett Kelly inkedmn@... http://inkedmn.com:8000 ...
Brett Kelly
inkedmn@...
Apr 3, 2005 3:26 am
57835
... I may be wrong, but I believe it's not possible. IIUC, Vim's editing "strategy" is to read the whole file into memory, then display it and allow the user...
A. J. Mechelynck
antoine.mechelynck@...
Apr 3, 2005 12:36 pm
57836
... Though your statement is essentially true (to my knowledge) you do not have to manually kill your vim in such a case. You can also ^C to terminate the...