... <snip> After a total of 30 minutes playing with vim7, I decided to read through the documentation on tabpage. 2 things I noticed: 1) The introduction...
Bill Pursell
bill.pursell@...
Apr 1, 2006 9:50 am
67187
There seems to be a way to "redir" something to all sorts of places but not into a buffer. Am I missing something? Almost always all I want to do is suck ...
Eric Arnold
eric_p_arnold@...
Apr 1, 2006 10:38 am
67188
The Vim7 sections I have had trouble with so far are for the "tabline" and the new List and Dictionary support. The examples have errors in them, ranging from...
Eric Arnold
eric_p_arnold@...
Apr 1, 2006 11:20 am
67189
... If you are using a slightly older version, the configure script accidentally used "-arch ppc" instead of leaving out the -arch argument. I fixed that, but...
Bram Moolenaar
Bram@...
Apr 1, 2006 11:21 am
67190
... 1. Introduction *windows-intro* A window is a viewport onto a buffer. You can use multiple windows on one buffer, or several windows on different...
Eric Arnold
eric_p_arnold@...
Apr 1, 2006 11:25 am
67191
... http://www.vim.org/scripts/script.php?script_id=897 "ViewOutput : scroll back and search [long] output of vim command" Yakov...
Yakov Lerner
iler.ml@...
Apr 1, 2006 11:41 am
67192
... If you read the docs out-of-order you will miss some terms. If you don't know what a window is you really need to read part of the user manual first. ... ...
Bram Moolenaar
Bram@...
Apr 1, 2006 12:33 pm
67193
... Yakov...
Yakov Lerner
iler.ml@...
Apr 1, 2006 1:04 pm
67194
Hi, ... In Vim7, you can scroll back and forth the output of a command at the more prompt using the following commands: u - scroll back a page d - scroll down...
Yegappan Lakshmanan
yegappanl@...
Apr 1, 2006 4:08 pm
67195
... I know what the terms mean. I'm simply trying to point out that it may be useful to have a back reference at that point of the documentation. ... Then I...
Bill Pursell
bill.pursell@...
Apr 1, 2006 6:17 pm
67196
Is there, could there be a way to have regions defined in the tabline so on a mouse click they would call user defined functions from arbitrary locations (i.e....
Eric Arnold
eric_p_arnold@...
Apr 2, 2006 8:41 am
67197
... In general: no. We now have three GUI tabline implementations (Motif just added), it would be quite difficult to make this work for all of them. I do...
Bram Moolenaar
Bram@...
Apr 2, 2006 10:47 am
67198
Below is a sample of the html code processed by perl's Template.pm, I will use vim and want to ident lots of unident codes more smartly, just like external...
Ken Perl
kenperl@...
Apr 2, 2006 2:22 pm
67199
... One issue with the :help for Vim-7.0 is that that command doesn't take you where it used to. It now takes you to the Reference Manual table of contents...
Gary Johnson
garyjohn@...
Apr 2, 2006 8:09 pm
67200
Hi Bram, When a Windows text file does not end with CRLF, vim will consider it a NOEOL UNIX file, displaying all the CRs. I think this could be improved....
Wu Yongwei
wuyongwei@...
Apr 3, 2006 2:25 am
67201
... I had tested with vim 6.4 but it is not as you'd described. The file not end with the CR/LF at will be recognized as "NOEOL DOS" file not as you'd ...
panshizhu@...
Apr 3, 2006 3:27 am
67202
I'm starting a new program and am planning on writing it as a literate program. For those who don't know, a literate program is one where the documentation and...
David Berg
drberg1000@...
Apr 3, 2006 3:37 am
67203
... The way I usually manage with -ve part of the patterns is that I first search without that and get the matching lines in a separate window, and further...
Hari Krishna Dara
hari_vim@...
Apr 3, 2006 4:28 am
67204
... OK, I see that you are right. Check this page: http://www.cnet.com.au/ Although I guess it intends to have Windows line endings, some of its lines (8 out...
Wu Yongwei
wuyongwei@...
Apr 3, 2006 4:49 am
67205
... IMO the improvement may be: write autocommand script to cope with this? i.e. automatically remove all the ^M if a buffer opend with ff=unix ? In the Unix...
panshizhu@...
Apr 3, 2006 5:07 am
67206
Dear all, would it be possible to configure :grep to search case-insensitive filenames? Any help will be great!...
Edward Wong
plwong@...
Apr 3, 2006 5:37 am
67207
... Are you sure you've tried to set ignorecase in VIM? My grep works with mixed-case filename without problem. -- Sincerely Pan, Shizhu. ext: 2221...
panshizhu@...
Apr 3, 2006 5:45 am
67208
I want to call HTML completion on my own plugin. I use the following code : let l:st1 = htmlcomplete#CompleteTags(1,'') if ( l:st1>= 0 ) let l:str1 =...
ice_2001cn
ice_2001cn@...
Apr 3, 2006 6:17 am
67209
Ok I did a bit more testing. 1) I have a generated file named PDA.SS and PDA.S10 2) in .vimrc, set grepprg=grep\ -Hn 3) using cygwin as shell When I attempted...
Edward Wong
plwong@...
Apr 3, 2006 7:04 am
67210
... [snip] ... I might be wrong, but it seems to me that you're barking up the wrong tree, here. If you're using an external grep program then neither Vim nor...
Chris Allen
c.d.allen@...
Apr 3, 2006 7:45 am
67211
... Have you tried that in your BASH prompt? My result are below: pansz-pc:~$ grep fad test1.txt adfadfaf pansz-pc:~$ grep fad test1.TXT adfadfaf pansz-pc:~$...
panshizhu@...
Apr 3, 2006 7:45 am
67212
Which regular expression would match 3 words (w1,w2,w3) in any order with anything between them withinh 1 paragragh ? For example: ... w2 ..... w3 .... w1 .......
Yakov Lerner
iler.ml@...
Apr 3, 2006 8:10 am
67213
... bash has 'nocaseglob' option. Excerpt from 'man bash': nocaseglob If set, bash matches filenames in a case-insensitive fashion when performing pathname...
Yakov Lerner
iler.ml@...
Apr 3, 2006 8:13 am
67214
... Would this do it? /.*w1\&.*w2\&.*w3 -- Gerald...
Gerald Lai
laige@...
Apr 3, 2006 8:51 am
67215
In fact, it is not "in the Windows world", but rather "in the badly behaved editors world". You see, Openoffice, MS Office, and I think even Notepad all ...