... Heh. Never used the windows version. Actually, I haven't used windows much at all for the last ... 6 years or so... last version I used regularly was 2k. I...
95334
A. S. Budden
abudden@...
Sep 1, 2008 7:24 am
... I can wholeheartedly recommend Dr Chip's RunView for this: see http://mysite.verizon.net/astronaut/vim/ To run the whole script, (assuming you've set up...
95335
François Ingelrest
francois.ingelrest@...
Sep 1, 2008 8:02 am
On Mon, Sep 1, 2008 at 09:17, Jack T Mudge III ... It makes Vim more Windows-like, and changes some of the already used mappings (e.g., C-V) to ease the use of...
95336
killy971
killy971@...
Sep 1, 2008 8:05 am
Few months ago, I think I encountered some source code files which had vi/vim settings embedded into source code comments. Now that I lost trace of these...
95337
François Ingelrest
francois.ingelrest@...
Sep 1, 2008 8:10 am
Hi, ... See :h modeline, you should get all the information you need. --~--~---------~--~----~------------~-------~--~----~ You received this message from the...
95338
Albie
albie.jvr@...
Sep 1, 2008 8:11 am
... --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit...
95339
Jürgen Krämer
jottkaerr@...
Sep 1, 2008 8:40 am
Hi, ... which version do you use? With Gvim 7.2.6 on a German Windows XP it works correctly. Regards, Jürgen -- Sometimes I think the surest sign that...
95340
momodi
whummd@...
Sep 1, 2008 12:20 pm
I think you could use xterm. !xterm -e"python % ; read -n 1" ... --~--~---------~--~----~------------~-------~--~----~ You received this message from the...
95341
Peter Palm
peterp@...
Sep 1, 2008 12:48 pm
... Or you could suspend vim, and just run python [filename] | view ... Regards, Peter --~--~---------~--~----~------------~-------~--~----~ You received this...
95342
Bram Moolenaar
Bram@...
Sep 1, 2008 2:45 pm
... It looks like calling input() changes the column that :echo uses. It doesn't look right. -- How To Keep A Healthy Level Of Insanity: 3. Every time someone...
95343
bgold12
bgold12@...
Sep 1, 2008 4:58 pm
Is there a way to list all files in a directory tree to the current vim buffer, similar to what the system command "ls -R >> tempfile" would do in the command...
95344
Gary Johnson
garyjohn@...
Sep 1, 2008 5:11 pm
... See ... Regards, Gary --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information,...
95345
A. S. Budden
abudden@...
Sep 1, 2008 5:36 pm
File: eval.txt Line: 3302 (assuming I've got the latest version) input() needs to be surrounded by vertical bars as pressing ctrl-] on it produces the error: ...
95346
Cesar Romani
andalou@...
Sep 1, 2008 5:44 pm
... You can also do: !!ls -R ... Cesar --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more...
95347
Tony Mechelynck
antoine.mechelynck@...
Sep 1, 2008 5:53 pm
... To get them listed, you could of course do ... or maybe ... To get the directory into a Vim buffer (at the end of the current ... or maybe ... then...
95348
Teemu Likonen
tlikonen@...
Sep 1, 2008 6:12 pm
... This replaces the current line in Vim buffer with the output of the shell command (ls -R). In other words: "!!" is a filtering command. ...
95349
Tony Mechelynck
antoine.mechelynck@...
Sep 1, 2008 6:20 pm
... You don't. Herer's the first line of the latest version: *eval.txt* For Vim version 7.2. Last change: 2008 Aug 09 ... I find your example near the top of...
95350
bgold12
bgold12@...
Sep 1, 2008 6:21 pm
Thanks, it looks like :r !ls -R is exactly what I'm looking for. The problem is, it can't find ls. How can I set the path of the new shell to include...
95351
Tony Mechelynck
antoine.mechelynck@...
Sep 1, 2008 6:30 pm
... Ah, you're on Windows. Then, what are the options to the dir command to get a recursive listing? (My Windows knowledge is rusty.) First, type dir /? in a...
95352
Anton Sharonov
anton.sharonov@...
Sep 1, 2008 6:34 pm
... --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit...
95353
Anton Sharonov
anton.sharonov@...
Sep 1, 2008 6:39 pm
And to use cygwin "ls" if cygwing is installed in c:\cygwin\bin you can go to MyComputer / Properties / Advanced / Env. vars, select PATH and add at the tail...
95354
Linda W
vim@...
Sep 1, 2008 7:02 pm
... I want the backup file if there is a file existing *before* I edit, but I don't need an empty backup file -- which is what happens when ever you create a...
95355
Tony Mechelynck
antoine.mechelynck@...
Sep 1, 2008 7:27 pm
... (not tested) set backup augroup noemptybak au! BufNewFile * \ if filereadable(expand("<afile>:p") . "~") \ | let delstatus = delete(expand("<afile>:p") ....
95356
Ag. D. Hatzimanikas
a.hatzim@...
Sep 1, 2008 7:28 pm
... Maybe with an autocommand? Something like: autocmd BufNewFile set nobackup See, ... Regards, Ag. --~--~---------~--~----~------------~-------~--~----~ You...
95357
Tony Mechelynck
antoine.mechelynck@...
Sep 1, 2008 7:38 pm
... Don't forget to set backup back on somewhere, or you'll never get a new backup for any file once you've created one from scratch in a given session. Best...
95358
Linda W
vim@...
Sep 1, 2008 8:44 pm
... Not to seem difficult, but isn't "set backup" a global option and not buffer specific? If I have more than one file open at a time, as I do at times ...
95359
Peng Yu
PengYu.UT@...
Sep 1, 2008 8:50 pm
... screen, which looks like the first file is written multiple times (same as the number of files are open). However, all the files are indeed been written...
95360
Peng Yu
PengYu.UT@...
Sep 1, 2008 8:56 pm
On Jul 6, 9:43 am, Tony Mechelynck <antoine.mechely...@...> ... Has anybody got any solution to this problem? Thanks, Peng ...
95361
Gary Johnson
garyjohn@...
Sep 1, 2008 9:43 pm
... If you're only invoking cygwin commands from a Cygwin shell or from Windows vim (and not from a DOS prompt), an alternative to modifying PATH at that point...
95362
Tony Mechelynck
antoine.mechelynck@...
Sep 1, 2008 9:46 pm
... ":set backup" is global: it is necessary if you want backups for existing files. If you don't want any backups you should use ":set nobackup", and if you...