... Thanks, Dan. Both this method and the one using invisible markers and mkview are intriguing. I'll read up on them. Will probably have further questions...
123696
Gary Johnson
garyjohn@...
Jun 2, 2011 2:33 pm
... I don't like all that clutter in the fold line, either, but I do like to see the number of lines in the fold, so I modified the appearance of the fold line...
123697
Ben Fritz
fritzophrenic@...
Jun 2, 2011 3:03 pm
... Ah, so you want to modify what is displayed in place of the folded text. This is certainly possible, using the 'foldtext39; option. If you can specify...
123698
Ben Fritz
fritzophrenic@...
Jun 2, 2011 3:07 pm
... You cannot override the syntax rules with the after directory if you want to modify the case-sensitivity of all the matches. The easiest solution is...
123699
A117
bon-ami@...
Jun 2, 2011 4:23 pm
In my files, some lines are indented with Tab's, while others uses spaces. If I set cindent or smartindent, new lines after one set of these lines cannot be...
123700
Gary Johnson
garyjohn@...
Jun 2, 2011 5:10 pm
... See if either of these do what you need. ... Regards, Gary -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below...
123701
Daniel Corrêa
dnlcorrea@...
Jun 2, 2011 5:18 pm
... You might also wanna look at ... Cheers, Daniel ... Daniel Corrêa +55 (45) 9938.3993 http://about.me/dnlcorrea -- You received this message from the...
123702
Andrew Long
andrew.long@...
Jun 2, 2011 5:20 pm
I'm working on a syntax file for a language called SCL I'm experiencing a problem where a valid piece of syntax (a variable declaration) sudden;y changes state...
123703
Lori Pritchett-Sheats
tigger0087@...
Jun 2, 2011 6:01 pm
Hello -- I discovered the plugin csindent.vim, a script that selects a C or C++ indent style based on the directory that a file resides in. I had two questions...
123704
Ben Schmidt
mail_ben_schmidt@...
Jun 2, 2011 11:27 pm
... [...] ... This indeed seems very strange. With sync fromstart, I can't imagine why this would happen, particularly in the case where it's in a comment, as ...
123705
sc
toothpik@...
Jun 3, 2011 12:40 am
... i bet this was written before we had the repeat() function sc -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply...
123706
Gary Johnson
garyjohn@...
Jun 3, 2011 1:50 am
... Yeah. That's why a little farther down the page I also wrote: You could do something similar to get the appearance you want. I wrote it before the...
123707
Michael Henry
vim@...
Jun 3, 2011 10:58 am
... You can compile vim as an unprivileged user and install it in your home directory. Tony Mechelynck has a nice tutorial on compiling Vim in general: ...
123708
Eric Weir
eeweir@...
Jun 3, 2011 1:45 pm
... Thanks, Gary. As I mentioned in my original post on this thread, I'm not a programmer. I think I understand what this does, but from your description, not...
123709
ZyX
zyx.vim@...
Jun 3, 2011 2:15 pm
Reply to message «Re: non-interactive vimdiff to stdout», sent 09:13:30 03 June 2011, Friday by ZyX: If you are interested, <input> hack is now implemented...
123710
Eric Weir
eeweir@...
Jun 3, 2011 2:47 pm
... Thanks, Ben. What I would like is that the line displayed by the fold be simply the first screen line of text of the fold. I took a look at the suggestions...
123711
Aman Jain
amanjain.nitrkl@...
Jun 3, 2011 6:39 pm
Hi I know vim supports searching for files in those directories which are specified by the path variable. e.g. ... (For this find command, auto complete works...
123712
Ryan Aviles
ryan.aviles@...
Jun 3, 2011 11:19 pm
When I do :find <filename_without_dir> It opens the file even if its outside my current working directory. No need for the ":r" ... -- You received this...
123713
Aman Jain
amanjain.nitrkl@...
Jun 4, 2011 1:01 am
I know that it works for ":find", as already mentioned in my question; I am mainly interested in a way by which I get the same behavior for ":r" --Thanks ... ...
123714
Jean-Rene David
jrdavid@...
Jun 4, 2011 1:19 am
... As you noticed, :read doesn't consult 'path'. Here's a quick implementation: fun! Read(file) let full_path = findfile(a:file) exe "read " . full_path ...
123715
Gary Johnson
garyjohn@...
Jun 4, 2011 7:24 am
... The example at the top of ":help fold-foldtext" does that. (The line beginning ":set foldtext=v:folddashes...") Try that and see if it does what you...
123716
Eric Weir
eeweir@...
Jun 4, 2011 6:05 pm
... Thanks, Gary. Comes close. I still get a report of the number of lines in the fold. I just plunked the line as is from the help screen into my .vimrc, but...
123717
ZyX
zyx.vim@...
Jun 4, 2011 8:41 pm
Reply to message «Re: non-interactive vimdiff to stdout», sent 18:14:22 04 June 2011, Saturday by ZyX: Signs are also implemented now, including icons....
123718
Tim Johnson
tim@...
Jun 4, 2011 10:30 pm
... and then press TAB, I get a wildmenu for the target directory. Yay! But I can't get this same function to work programmatically. I have the following two...
123719
Tony Mechelynck
antoine.mechelynck@...
Jun 5, 2011 12:01 am
... IIRC, the relevant setting is 'wildcharm39; (q.v.). HTH, Tony. -- hundred-and-one symptoms of being an internet addict: 103. When you find yourself in the...
123720
sc
toothpik@...
Jun 5, 2011 12:24 am
... another way to approach it would be to call glob() with an asterisk in place of the <Tab> sc -- You received this message from the "vim_use" maillist. Do...
123721
Tim Johnson
tim@...
Jun 5, 2011 12:26 am
... Thank you for the reply Tony. I did the following: set wildcharm=<Tab> " in the same file as the code I have included. " sourced the file again, but I...
123722
Tim Johnson
tim@...
Jun 5, 2011 12:40 am
... Thanks sc, but could you illustrate with an example: `glob' is new to me, so I am in meantime looking at help and doing some experimenting. cheers -- Tim ...
123723
Tony Mechelynck
antoine.mechelynck@...
Jun 5, 2011 1:51 am
... Ah, sorry, I missed that thing about escaping the tab. See ... Within single quotes, every character is taken literally, even a backslash, except that two...
123724
Ben Fritz
fritzophrenic@...
Jun 5, 2011 2:38 am
... I've actually been playing around with some prototyping for this as well. What's the extra span for, with class=over? I could not figure out a purpose for...