... I don't think so, but you can :redir into a register, put into a buffer, or use split(), filter(), etc. I don't see a way to loop through the mappings...
Eric Arnold
eric.p.arnold@...
Jun 1, 2006 9:36 am
69822
Sorry if I've got brain lock on this, but is it possible to match a substring like match wildmenu ;\(directory\)\{3,}; such that it will match three or more...
Eric Arnold
eric.p.arnold@...
Jun 1, 2006 11:06 am
69823
Hello, I'm trying to write my first vim-plugin, but I got stucked. I managed to execute an external command, which gives me back a list of filenames. One...
Johannes Schwarz
J.Schwarz@...
Jun 1, 2006 12:03 pm
69824
... You need to say exactly how you executed the command, since that will define how the lines were acquired, whether they went from the file into a buffer...
Eric Arnold
eric.p.arnold@...
Jun 1, 2006 12:25 pm
69825
... Enclose "ectory" in another group that matches zero or one times. The "\v" enables "very magic" mode, and the "%()" construct causes the group to not be...
Cory Echols
ctechols@...
Jun 1, 2006 12:56 pm
69826
... Remember that a vim script (including a plugin) is a list of commands in Command-Line (Ex) mode, not Normal mode. So that j means ... it will be a step in...
Benji Fisher
benji@...
Jun 1, 2006 1:11 pm
69827
... Do you mean like /\<dir\%[ectory]/ ? ... HTH --Benji Fisher...
Benji Fisher
benji@...
Jun 1, 2006 1:26 pm
69828
Hi, I'm running Vim 70 on win XP, since the upgrade to 70 I can't print because Vim uses postscript mode to make a hardcopy (it says "sending to printer" and...
Zbigniew Kowalski
zbikow1@...
Jun 1, 2006 1:28 pm
69829
... Real close. Turns out I think I want: /\<\%[directory]\{1,}\>/ but it doesn't seem to recognize \{1,} and without the \< it seems to be matching white...
Eric Arnold
eric.p.arnold@...
Jun 1, 2006 1:58 pm
69830
First of all I want to thank everyone, who contributes to this list. It's one of the best lists I know of. The response time is so quick and the quality of the...
Johannes Schwarz
J.Schwarz@...
Jun 1, 2006 2:00 pm
69831
On 6/1/06, Benji Fisher <benji@...> wrote: ... D'oh. For some reason I though 'j' was a variable and jumped to a wishful[wrong] conclusion that it...
Eric Arnold
eric.p.arnold@...
Jun 1, 2006 2:08 pm
69832
Sorry I wasn't clear, I wanted it to match any substring of 'directory'. I think \%[] does this (courtesy of Benji)....
Eric Arnold
eric.p.arnold@...
Jun 1, 2006 2:21 pm
69833
... I second Benji's suggestion of using a ":g" command if possible. It's more idiomatic, making it easier to understand. While you omit what you're doing with...
Tim Chase
vim@...
Jun 1, 2006 2:22 pm
69834
This problem only occur when I click the gvim icon which I created on the KDE menu. When I start gvim on the shell, then there is no problem. Both icon and...
PoWah Wong
wong_powah@...
Jun 1, 2006 2:43 pm
69835
As much as I love vim (write school papers, do meeting notes, program), in the software side of the world everything seems to be going eclipse. Particularly as...
Furash Gary
furashg@...
Jun 1, 2006 3:01 pm
69836
I don't know much about eclipse. Does it allow you to embed your own editor as the default editing window?...
Eric Arnold
eric.p.arnold@...
Jun 1, 2006 3:10 pm
69837
http://www.satokar.com/viplugin/index.php?&MMN_position=7:7 Not sure of the main page for this tool as I'm at work (where I don't use Java), but I have it at...
Russell Bateman
russ@...
Jun 1, 2006 3:10 pm
69838
... By default VIM on Windows uses the Windows print APIs, it will only generate PostScript if it was compiled in. Does the output from ... version of VIM...
Mike Williams
mike.williams@...
Jun 1, 2006 3:12 pm
69839
... I use Gnome version 2.14.1, and I happen to have a gvim icon on my toolbar. With that, I don't see the problem you're having. What does :pwd show? ie. ...
Charles E Campbell Jr
drchip@...
Jun 1, 2006 3:21 pm
69840
No, but it supports a very decent plug-in architecture. You can plug just about anything into it--cvs, ant, maven, electric dog polishers, fur-lined kitchen...
Russell Bateman
russ@...
Jun 1, 2006 3:21 pm
69841
Prefixing the yank and put commands with registers works, but I personally prefer the following, which just sets the default register to be the system...
Max Dyckhoff
maxd@...
Jun 1, 2006 3:35 pm
69842
Hi! There is another possibility: Shift-Ins = paste Ctrl-Ins = copy Shift-Del = cut These shortcuts work even without sourcing mswin.vim (BTW, I don't ...
Georg Dahn
gorgyd@...
Jun 1, 2006 4:20 pm
69843
... [...] I knew about that but I somehow forgot to mention it (though maybe I should have), because most of my puts and yanks are internal to Vim and I don't...
A.J.Mechelynck
antoine.mechelynck@...
Jun 1, 2006 4:24 pm
69844
... From: Darren Hiebert <dhiebert@...> To: ctags-users@... Sent: Tuesday, May 30, 2006 4:26:23 PM Subject: [Ctags]...
Yegappan Lakshmanan
yegappan@...
Jun 1, 2006 4:32 pm
69845
... Thanks for pointing this out... even perforce supports some keywords, so reloading is essential for me as well. -- Thanks, Hari ...
Hari Krishna Dara
hari_vim@...
Jun 1, 2006 5:21 pm
69846
That seems like a fair warning, although I will say that I have never run into such a problem. I don't tend to keep things in the clipboard for very long at...
Hello, ... You can try using eclim: http://eclim.sourceforge.net/ - Yegappan...
Yegappan Lakshmanan
yegappanl@...
Jun 1, 2006 6:10 pm
69849
... This is nice when you want it, but I find it frequently annoying when I do anything that happens to delete in the process...like ciw to change the current...
Tim Chase
vim@...
Jun 1, 2006 6:14 pm
69850
Oooo... Coool. Thanks! ... From: Yegappan Lakshmanan [mailto:yegappanl@...] Sent: Thursday, June 01, 2006 11:09 AM To: Furash Gary Cc: vim@... ...