... 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...
Jack T Mudge III
jakykong@...
Sep 1, 2008 7:17 am
95334
... 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...
A. S. Budden
abudden@...
Sep 1, 2008 7:24 am
95335
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...
François Ingelrest
francois.ingelrest@...
Sep 1, 2008 8:02 am
95336
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...
killy971
killy971@...
Sep 1, 2008 8:05 am
95337
Hi, ... See :h modeline, you should get all the information you need. --~--~---------~--~----~------------~-------~--~----~ You received this message from the...
François Ingelrest
francois.ingelrest@...
Sep 1, 2008 8:10 am
95338
... --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit...
Albie
albie.jvr@...
Sep 1, 2008 8:11 am
95339
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...
Jürgen Krämer
jottkaerr@...
Sep 1, 2008 8:40 am
95340
I think you could use xterm. !xterm -e"python % ; read -n 1" ... --~--~---------~--~----~------------~-------~--~----~ You received this message from the...
momodi
whummd@...
Sep 1, 2008 12:20 pm
95341
... Or you could suspend vim, and just run python [filename] | view ... Regards, Peter --~--~---------~--~----~------------~-------~--~----~ You received this...
Peter Palm
peterp@...
Sep 1, 2008 12:48 pm
95342
... 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...
Bram Moolenaar
Bram@...
Sep 1, 2008 2:45 pm
95343
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...
bgold12
bgold12@...
Sep 1, 2008 4:58 pm
95344
... See ... Regards, Gary --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information,...
Gary Johnson
garyjohn@...
Sep 1, 2008 5:11 pm
95345
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: ...
A. S. Budden
abudden@...
Sep 1, 2008 5:36 pm
95346
... You can also do: !!ls -R ... Cesar --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more...
Cesar Romani
andalou@...
Sep 1, 2008 5:44 pm
95347
... 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...
Tony Mechelynck
antoine.mechelynck@...
Sep 1, 2008 5:53 pm
95348
... This replaces the current line in Vim buffer with the output of the shell command (ls -R). In other words: "!!" is a filtering command. ...
Teemu Likonen
tlikonen@...
Sep 1, 2008 6:12 pm
95349
... 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...
Tony Mechelynck
antoine.mechelynck@...
Sep 1, 2008 6:20 pm
95350
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...
bgold12
bgold12@...
Sep 1, 2008 6:21 pm
95351
... 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...
Tony Mechelynck
antoine.mechelynck@...
Sep 1, 2008 6:30 pm
95352
... --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit...
Anton Sharonov
anton.sharonov@...
Sep 1, 2008 6:34 pm
95353
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...
Anton Sharonov
anton.sharonov@...
Sep 1, 2008 6:39 pm
95354
... 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...
Linda W
vim@...
Sep 1, 2008 7:02 pm
95355
... (not tested) set backup augroup noemptybak au! BufNewFile * \ if filereadable(expand("<afile>:p") . "~") \ | let delstatus = delete(expand("<afile>:p") ....
Tony Mechelynck
antoine.mechelynck@...
Sep 1, 2008 7:27 pm
95356
... Maybe with an autocommand? Something like: autocmd BufNewFile set nobackup See, ... Regards, Ag. --~--~---------~--~----~------------~-------~--~----~ You...
Ag. D. Hatzimanikas
a.hatzim@...
Sep 1, 2008 7:28 pm
95357
... 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...
Tony Mechelynck
antoine.mechelynck@...
Sep 1, 2008 7:38 pm
95358
... 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 ...
Linda W
vim@...
Sep 1, 2008 8:44 pm
95359
... 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...
Peng Yu
PengYu.UT@...
Sep 1, 2008 8:50 pm
95360
On Jul 6, 9:43 am, Tony Mechelynck <antoine.mechely...@...> ... Has anybody got any solution to this problem? Thanks, Peng ...
Peng Yu
PengYu.UT@...
Sep 1, 2008 8:56 pm
95361
... 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...
Gary Johnson
garyjohn@...
Sep 1, 2008 9:43 pm
95362
... ":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...