Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

vim · Vim (Vi IMproved) text editor users list

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 65299 - 65328 of 137836   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
65299 Marco Kunze
makunze@... Send Email
Feb 1, 2006
8:12 am
Hi, I know it is possible to start a shell from vim, but is it also possible to start the shell within a split window, so that I could jump in and out of the...
65300 Anatoli Sakhnik
sakhnik@... Send Email
Feb 1, 2006
8:34 am
65301 Anatoli Sakhnik
sakhnik@... Send Email
Feb 1, 2006
8:51 am
Good morning! ... No, cygwin won't satisfy my needs. ... It seems that this is what I needed indeed. The problem appeared only under windows, so I'll solve it...
65302 Gareth Oakes
goakes@... Send Email
Feb 1, 2006
9:14 am
Hi Marco, ... Often-requested feature, but this is where Vim draws the line. The best you can get here is by using GNU screen with the console version of Vim....
65303 A. J. Mechelynck
antoine.mechelynck@... Send Email
Feb 1, 2006
9:44 am
... gvim reads both. You should still bracket it by "if !has('gui_running&#39;)" in your vimrc to make it not apply to the GUI. Best regards, Tony....
65304 Gregor Berginc
gregor.berginc@... Send Email
Feb 1, 2006
10:15 am
Dear all, I am experiencing interesting problem with custom plugins. Suppose you have a function: function! Hello(text) echo "Hello " \. a:text endfunction If...
65305 Hiroshi Iwatani
HGA03630@... Send Email
Feb 1, 2006
10:56 am
Starting from beginner to reach a sophomore intermediate level, what would be the ten steps, each of which might contain two to four related skill items, of...
65306 Vigil
vim5632@... Send Email
Feb 1, 2006
11:25 am
I know this should be simple but I can't find where to do it... In the above line, how would I compose a command to search for "this" and put everything after...
65307 Tim Chase
vim@... Send Email
Feb 1, 2006
12:13 pm
... While I couldn't quite tell if Vigil wanted line-wise or character-wise blocks, if you want it in line-wise, you can just use the ex command ... which will...
65308 A. J. Mechelynck
antoine.mechelynck@... Send Email
Feb 1, 2006
12:16 pm
... From the keyboard: /\<this&#92;> v /\<find&#92;> e "ey 1. search 2. start Visual mode 3. search again 4. forward to end of word 5. yank In a script (untested, all...
65309 iler_ml@... Send Email Feb 1, 2006
12:25 pm
On Wed, 1 Feb 2006 11:06:57 +0000 (GMT), "Vigil" <vim5632@...> ... I assume you mean 'register e'. The below works but missing checks for 'not...
65310 Marian Csontos
csontos@... Send Email
Feb 1, 2006
12:43 pm
On Wed, 01 Feb 2006 11:52:36 +0100, Hiroshi Iwatani <HGA03630@...> ... Ufff, hard to say. I consider regular expressions as a key feature of vim. Kind...
65311 A. J. Mechelynck
antoine.mechelynck@... Send Email
Feb 1, 2006
12:47 pm
... He said "starting at 'this' and all after it on the same line until 'find'". Both words were on the same line, so characterwise and blockwise (but not...
65312 Matthias Langer
mlangc@... Send Email
Feb 1, 2006
12:55 pm
... Thanks, that works fine :-)...
65313 Anatoli Sakhnik
sakhnik@... Send Email
Feb 1, 2006
12:56 pm
Hello! Why is there ten steps to reach the mastery? As of me, the only three steps would be enough: 1) complete the vimtutor in any language; 2) study the user...
65314 Benji Fisher
benji@... Send Email
Feb 1, 2006
1:19 pm
... The problem is that 'compatible&#39; is set (so that vim is more vi-compatible) when your plugins are loaded. Like traditional vi, vim will then recognize...
65315 Benji Fisher
benji@... Send Email
Feb 1, 2006
1:37 pm
... Decide for yourself what parts of the users' manual should be included. ... I learned to use vim before the users' manual was written, so my standard...
65316 Jean-Rene David
jrdavid@... Send Email
Feb 1, 2006
1:43 pm
I often use :g/foo/# to search for a pattern when I know it occurs many times in a file and I want to avoid using / followed by multiple "n"'s to find a ...
65317 Marian Csontos
csontos@... Send Email
Feb 1, 2006
2:12 pm
On Wed, 01 Feb 2006 14:39:47 +0100, Jean-Rene David <jrdavid@...> ... Hi, with vim7 it so easy - simply use :vimgrep Regards, -- Marian ________...
65318 Justin Randall
randall311@... Send Email
Feb 1, 2006
3:19 pm
I would really also love to have this feature. I would like to be able to run a shell from within a split window and be able to jump in and out of the shell to...
65319 Vigil
vim5632@... Send Email
Feb 1, 2006
3:46 pm
... Thanks, I thought I could do it with just one ":stuff here" command but I'll just macro it. The ultimate goal was to make a macro that would select text ...
65320 Yegappan Lakshmanan
yegappanl@... Send Email
Feb 1, 2006
3:47 pm
Hi, ... You can also use one of the following commands: let @e = matchstr(getline('.'), '\<this\>.\{-}\<find\>') let @e = matchstr(getline('.'),...
65321 Yegappan Lakshmanan
yegappanl@... Send Email
Feb 1, 2006
3:54 pm
Hi, ... In Vim7, you can also use the new ":caddexpr&quot; command to add the results to the quickfix window: g/<pattern>/caddexpr expand("%") . ":" . line(".") ....
65322 Charles E. Campbell, ...
drchip@... Send Email
Feb 1, 2006
4:01 pm
... every every message. message. Any Any ideas ideas why why that that is is ... registered twice.) twice.) This This can can be be a a common common problem...
65323 Charles E. Campbell, ...
drchip@... Send Email
Feb 1, 2006
4:07 pm
As frequently happens, there's often multiple ways to do things in vim. Here's another: /\<this&#92;>/"ey/\<find\>/ (its a one liner, starting from normal mode) ...
65324 Charles E. Campbell, ...
drchip@... Send Email
Feb 1, 2006
4:24 pm
... Whoops; please try /\<this&#92;>/"ey/\<find\>\zs/ instead (to get the "find" included). Regards, Chip Campbell...
65325 Tim Chase
vim@... Send Email
Feb 1, 2006
4:37 pm
... Or you can use the search modifiers /\<find&#92;>/e+ instead of the "\zs" (one-third fewer characters, lower in trans-fats, and tastes great! :*) You'll also...
65326 Jorge Almeida
jalmeida@... Send Email
Feb 1, 2006
4:44 pm
I'm having a _really frustating_ problem with the » key I use for maps. (In my keyboard, this key is at a handy location, and is useless for other purposes.) ...
65327 Ernest Obusek
eobusek@... Send Email
Feb 1, 2006
5:08 pm
Is there a direct way to go from a function in a file to its prototype in a header file? The header file is in the vim path. Thanks, Ernest...
65328 Gary Holloway
gary@... Send Email
Feb 1, 2006
5:10 pm
I don't see that anyone answered this. I've got (presumably) the answer for #1; I don't see a solution for #2. I believe the problem you're having with #1 is...
Messages 65299 - 65328 of 137836   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help