Search the web
Sign In
New User? Sign Up
vim · Vim (Vi IMproved) text editor users list
? 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.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 65299 - 65328 of 109096   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
65299
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...
Marco Kunze
makunze@...
Send Email
Feb 1, 2006
8:12 am
65300 Anatoli Sakhnik
sakhnik@...
Send Email
Feb 1, 2006
8:34 am
65301
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...
Anatoli Sakhnik
sakhnik@...
Send Email
Feb 1, 2006
8:51 am
65302
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....
Gareth Oakes
goakes@...
Send Email
Feb 1, 2006
9:14 am
65303
... gvim reads both. You should still bracket it by "if !has('gui_running')" in your vimrc to make it not apply to the GUI. Best regards, Tony....
A. J. Mechelynck
antoine.mechelynck@...
Send Email
Feb 1, 2006
9:44 am
65304
Dear all, I am experiencing interesting problem with custom plugins. Suppose you have a function: function! Hello(text) echo "Hello " \. a:text endfunction If...
Gregor Berginc
gregor.berginc@...
Send Email
Feb 1, 2006
10:15 am
65305
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...
Hiroshi Iwatani
HGA03630@...
Send Email
Feb 1, 2006
10:56 am
65306
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...
Vigil
vim5632@...
Send Email
Feb 1, 2006
11:25 am
65307
... 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...
Tim Chase
vim@...
Send Email
Feb 1, 2006
12:13 pm
65308
... From the keyboard: /\<this\> v /\<find\> e "ey 1. search 2. start Visual mode 3. search again 4. forward to end of word 5. yank In a script (untested, all...
A. J. Mechelynck
antoine.mechelynck@...
Send Email
Feb 1, 2006
12:16 pm
65309
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...
iler_ml@...
Send Email
Feb 1, 2006
12:25 pm
65310
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...
Marian Csontos
csontos@...
Send Email
Feb 1, 2006
12:43 pm
65311
... 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...
A. J. Mechelynck
antoine.mechelynck@...
Send Email
Feb 1, 2006
12:47 pm
65312
... Thanks, that works fine :-)...
Matthias Langer
mlangc@...
Send Email
Feb 1, 2006
12:55 pm
65313
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...
Anatoli Sakhnik
sakhnik@...
Send Email
Feb 1, 2006
12:56 pm
65314
... The problem is that 'compatible' is set (so that vim is more vi-compatible) when your plugins are loaded. Like traditional vi, vim will then recognize...
Benji Fisher
benji@...
Send Email
Feb 1, 2006
1:19 pm
65315
... 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...
Benji Fisher
benji@...
Send Email
Feb 1, 2006
1:37 pm
65316
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 ...
Jean-Rene David
jrdavid@...
Send Email
Feb 1, 2006
1:43 pm
65317
On Wed, 01 Feb 2006 14:39:47 +0100, Jean-Rene David <jrdavid@...> ... Hi, with vim7 it so easy - simply use :vimgrep Regards, -- Marian ________...
Marian Csontos
csontos@...
Send Email
Feb 1, 2006
2:12 pm
65318
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...
Justin Randall
randall311@...
Send Email
Feb 1, 2006
3:19 pm
65319
... 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 ...
Vigil
vim5632@...
Send Email
Feb 1, 2006
3:46 pm
65320
Hi, ... You can also use one of the following commands: let @e = matchstr(getline('.'), '\<this\>.\{-}\<find\>') let @e = matchstr(getline('.'),...
Yegappan Lakshmanan
yegappanl@...
Send Email
Feb 1, 2006
3:47 pm
65321
Hi, ... In Vim7, you can also use the new ":caddexpr" command to add the results to the quickfix window: g/<pattern>/caddexpr expand("%") . ":" . line(".") ....
Yegappan Lakshmanan
yegappanl@...
Send Email
Feb 1, 2006
3:54 pm
65322
... 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...
Charles E. Campbell, ...
drchip@...
Send Email
Feb 1, 2006
4:01 pm
65323
As frequently happens, there's often multiple ways to do things in vim. Here's another: /\<this\>/"ey/\<find\>/ (its a one liner, starting from normal mode) ...
Charles E. Campbell, ...
drchip@...
Send Email
Feb 1, 2006
4:07 pm
65324
... Whoops; please try /\<this\>/"ey/\<find\>\zs/ instead (to get the "find" included). Regards, Chip Campbell...
Charles E. Campbell, ...
drchip@...
Send Email
Feb 1, 2006
4:24 pm
65325
... Or you can use the search modifiers /\<find\>/e+ instead of the "\zs" (one-third fewer characters, lower in trans-fats, and tastes great! :*) You'll also...
Tim Chase
vim@...
Send Email
Feb 1, 2006
4:37 pm
65326
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.) ...
Jorge Almeida
jalmeida@...
Send Email
Feb 1, 2006
4:44 pm
65327
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...
Ernest Obusek
eobusek@...
Send Email
Feb 1, 2006
5:08 pm
65328
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...
Gary Holloway
gary@...
Send Email
Feb 1, 2006
5:10 pm
Messages 65299 - 65328 of 109096   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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