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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 92468 - 92497 of 97000   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
92468
... Thanks for pointing that out, Tony. I didn't look carefully enough. Yes, that does look good, Bram. Ben. ...
Ben Schmidt
mail_ben_schmidt@...
Send Email
Jul 1, 2008
10:07 am
92469
Well I tried the following modes: - Visual (selecting the code to be refactored before pressing the keys) - Insert (selecting the code to be refactored before...
leeand00
leeand00@...
Send Email
Jul 1, 2008
12:14 pm
92470
Hi, I just tried mt atop a directory mf atop a file and then mm should'nt that move the file into the directory. It didn't on my VIM 7.1 on Windows. any Idea? ...
Roland Puntaier
Roland.Puntaier@...
Send Email
Jul 1, 2008
12:17 pm
92471
... Oh, yuck! I had trouble with this sort of thing, once. See :help 'winaltkeys' Yours may be set to 'yes'. It is certainly set at least to 'menu'. I have...
Benjamin Fritz
fritzophrenic@...
Send Email
Jul 1, 2008
12:55 pm
92472
... "It is impossible to ignore suffixes with two dots." Does this mean that I cant do the below? ... If not, why? ... "To avoid a dot or comma being...
Benjamin Fritz
fritzophrenic@...
Send Email
Jul 1, 2008
1:36 pm
92473
... But it doesn't seem to work with wildcards...is this the case? --~--~---------~--~----~------------~-------~--~----~ You received this message from the...
Benjamin Fritz
fritzophrenic@...
Send Email
Jul 1, 2008
1:42 pm
92474
Hi, ... I found the idea quite interesting so I ... well, I shamelessly copied it. Maybe it's of some help for you: ...
ThoML
micathom@...
Send Email
Jul 1, 2008
1:46 pm
92475
WEB CAM ON ONLINE New Web cam Software Simply Five Step To Open Ur Computer 1.Visit Link===> http://www.moreinfo247.com/9560073/CB 2.sign up with your current...
surya
2008231.surya@...
Send Email
Jul 1, 2008
2:56 pm
92476
I like this idea. But .... I changed the registry entry so that the path is now: C:\Program Files\Vim\vim70\run_gvim.bat instead of: C:\Program...
awb
awbuesing@...
Send Email
Jul 1, 2008
4:14 pm
92477
... General tip for debugging batch files that run and exit like this: Temporarily put a "pause" at the end of the batch file. Or, temporarily put a -f...
Benjamin Fritz
fritzophrenic@...
Send Email
Jul 1, 2008
4:34 pm
92478
... Come to think of it, the "-f" won't work if gvim isn't in your path. I'd try the pause to verify this is the problem (it should be) and then use one of the...
Benjamin Fritz
fritzophrenic@...
Send Email
Jul 1, 2008
4:35 pm
92479
It seems like there's something else going on. I added SLEEP 10 to the end of my batch file and even cleaned out everything but SLEEP 10. I get the 10 second...
awb
awbuesing@...
Send Email
Jul 1, 2008
5:22 pm
92480
Hi, ... I am able to get the preview window to open when using omni-completion to display more information about a selected tag with a C file. - Yegappan ...
Yegappan Lakshmanan
yegappanl@...
Send Email
Jul 1, 2008
6:03 pm
92481
svnlog.vim includes a hint to add the following script to ~/.vim/ scripts.vim to autodetect if a particular file is a file containing Subversion log messages....
Adam Monsen
haircut@...
Send Email
Jul 1, 2008
6:12 pm
92482
I'm guessing that: ... should be: if getline(1) =~ /^-\{72\}$/ setfiletype svnlog endif Note the extra \ to make a \{...\} group, specifying a line of 72 '-' ...
Benjamin Fritz
fritzophrenic@...
Send Email
Jul 1, 2008
6:33 pm
92483
... Oh, and also enclose it in single quotes instead of '/' characters to make it a string, like this: '^-\{72\}$' ...
Benjamin Fritz
fritzophrenic@...
Send Email
Jul 1, 2008
6:35 pm
92484
Is it possible to have Vim wrap lines when using :hardcopy, and respect the 'linebreak' option (or similar?). I know about :set printoptions+=wrap:y, but this...
Benjamin Fritz
fritzophrenic@...
Send Email
Jul 1, 2008
6:39 pm
92485
... According to ":help /\{", the \} is not necessary--just } will suffice. Regards, Gary --~--~---------~--~----~------------~-------~--~----~ You received...
Gary Johnson
garyjohn@...
Send Email
Jul 1, 2008
6:50 pm
92486
I have a question on the same lines. Would it be actually possible to spawn the omni-complete preview window on a CursorHold event? I find the omni-complete...
Hari
hari.rangarajan@...
Send Email
Jul 1, 2008
7:10 pm
92487
The batch file needs the full path name, but my full path name: C:\Program Files\vim\vim70\gvim.exe was problematic due to the space in the path name. Since I...
awb
awbuesing@...
Send Email
Jul 1, 2008
7:28 pm
92488
... Your run_gvim.bat maybe? Try adding @echo off (with the @ sign) as its first line. Best regards, Tony. -- Higgeldy Piggeldy, Hamlet of Elsinore Ruffled the...
Tony Mechelynck
antoine.mechelynck@...
Send Email
Jul 1, 2008
7:31 pm
92489
... I think surrounding that name in double quotes, i.e., "C:\Program Files\vim\vim70\gvim.exe" would fix that. ... You wrote earlier, run_gvim.bat contains...
Gary Johnson
garyjohn@...
Send Email
Jul 1, 2008
7:43 pm
92490
Hello, Is there a simple way to move text on the currently line to a specific column on the same line? For example if the text on the current line started in...
Jeff Lanzarotta
delux256-vim@...
Send Email
Jul 1, 2008
7:45 pm
92491
... Your batch file should pass its arguments to gvim. Here is a new version: @echo off set HOME=C:\ gvim %1 %2 %3 %4 %5 %6 %7 %8 %9 If your gvim.exe is not in...
Tony Mechelynck
antoine.mechelynck@...
Send Email
Jul 1, 2008
7:46 pm
92492
... A couple of answers to some questions would help lead towards a solution: - what fills the space? just spaces? - if you're in the middle of something such...
Tim Chase
vim@...
Send Email
Jul 1, 2008
7:57 pm
92493
... (Please bottom post rather than top post.) You are probably missing two things. First (and the likely cause of the quick flash without seeing anything)...
Marvin Renich
mrvn@...
Send Email
Jul 1, 2008
8:03 pm
92494
Hi guys, Could you, please, let me know in which version the fix is expected? Thanks a lot. ... --~--~---------~--~----~------------~-------~--~----~ You...
hippopo
Alex.Shturm@...
Send Email
Jul 1, 2008
8:13 pm
92495
... Absolutely, but there also be so many variables and so many ways to do such a thing, that it's best if you just demonstrate a before'n'after as to what you...
Gene Kwiecinski
gkwiecinski@...
Send Email
Jul 1, 2008
8:15 pm
92496
... 1. a) goto column 10: 10| b) insert ten spaces: 10i <esc> 2. Use DrawIt: (http://mysite.verizon.net/astronaut/vim/index.html#DRAWIT) a) Enable...
Charles E Campbell Jr
drchip@...
Send Email
Jul 1, 2008
8:15 pm
92497
... Oh, so it can...I missed that somehow. Cool. It does need to be a string though, rather than surrounding it with '/'. ...
Benjamin Fritz
fritzophrenic@...
Send Email
Jul 1, 2008
8:17 pm
Messages 92468 - 92497 of 97000   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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