Here's an updated version of my Python indent file. It should fix a function detection typo and not being smarter than the user after a stop-execution...
15429
Walter Briscoe
wbriscoe@...
Sep 29, 2000 2:46 pm
Bram provides information on building Microsoft ports of Vim 6 which depend on the availability of a UNIX box. From his perspective, that is all that is...
15430
Zdenek Sekera
zs@...
Sep 29, 2000 2:46 pm
... I think it's a good idea. ... come into play ... "cindent" if it is on, and indentkeys come into play. indentkeys may later even have an expanded meaning...
15431
Moore, Paul
Paul.Moore@...
Sep 29, 2000 3:26 pm
Get & extract the src, runtime, and extra archives. cd ...\vim-6.0h\src For the GUI version, nmake /f Makefile.mvc GUI=yes For the console version nmake /f...
15432
Brent Fulgham
brent.fulgham@...
Sep 29, 2000 3:56 pm
... I build Vim regularly using my Windows box at work. I cheat a bit by using the Cygwin utilities to untar/unzip the files. If you don't want to do that, I...
15433
Vince Negri
vnegri@...
Sep 29, 2000 4:01 pm
... The WinZip lookalike PowerArchiver will also uncompress tar.gz files, and is freeware, rather than shareware. Vince Legal Disclaimer: Any views expressed...
15434
Craig Barkhouse
craig@...
Sep 29, 2000 4:02 pm
... As Paul Moore mentioned, the name of the makefile has changed. It's now "Make_mvc.mak" for Microsoft Visual C++. There are other Make_*.mak files for...
15435
Craig Barkhouse
craig@...
Sep 29, 2000 5:11 pm
This message contains an attachment, and I apologize in advance if this causes anyone grief. It seemed like the best course of action. This patch fixes the...
15436
Bram Moolenaar
Bram@...
Sep 29, 2000 6:34 pm
... Thanks, I'll include the patch. -- hundred-and-one symptoms of being an internet addict: 47. You are so familiar with the WWW that you find the search...
15437
Bram Moolenaar
Bram@...
Sep 29, 2000 6:34 pm
... If the only demand is that the commands are executed _before_ doing something with buffers, they could still go in your vimrc file. Or is there something ...
15438
Bram Moolenaar
Bram@...
Sep 29, 2000 6:34 pm
... The GTK version explicitly extracts the -geometry argument from the command line and uses the values when opening the window. I can't see where the Gnome ...
15439
Bram Moolenaar
Bram@...
Sep 29, 2000 6:35 pm
... Vim 6.0 supports Unicode. Internally it uses UTF-8. You need to set the 'charcode39; and 'filecharcode39; options to edit a Unicode file (I would guess ...
15440
Aric Blumer
Aric.Blumer@...
Sep 29, 2000 7:08 pm
I've been trying to put together an indent function for VHDL. Here is what I have so far (this file is named vhdl.vim in the indent ... setlocal...
15441
Johannes Zellner
johannes@...
Sep 29, 2000 9:25 pm
this works echo substitute(39;javaScript39;, '^\(\l\+\).*$', '\139;, '') java this works /not/ echo substitute(39;javaScript39;, '^\([a-z]\+\).*$', '\139;, '') javaScript ...
15442
Bram Moolenaar
Bram@...
Sep 30, 2000 1:47 pm
... I don't see this problem. "vim /etc/" works and doing ":e /etc/" too. Do you have an older explorere.vim perhaps? -- hundred-and-one symptoms of being an...
15443
Bram Moolenaar
Bram@...
Sep 30, 2000 1:47 pm
... min_width set to zero? I would say this is a bug in the conversion software. For a fixed-width font min_width and max_width (actually min_bounds.width and...
15444
Bram Moolenaar
Bram@...
Sep 30, 2000 1:47 pm
... Right, the code doesn't do what is documented. Instead of throwing out this code, which is useful for C++, I'll keep the old meaning of ":" and document ...
15445
Bram Moolenaar
Bram@...
Sep 30, 2000 1:48 pm
... There has been a discussion about automatically loading functions (or packages) before. But there was no simple, straightforward solution. I don't like...
15446
Bram Moolenaar
Bram@...
Sep 30, 2000 1:48 pm
... Yes, see this code in the vim.vim indent file: function GetVimIndent() " Find a non-empty line above the current line. let lnum = v:lnum - 1 while lnum > 0...
15447
maurice s. barnum
pixi@...
Sep 30, 2000 5:33 pm
... yes. win32 won't (at least normally) allow a dll or exe with unresolvable imports to load. --xmsb...
15448
Bram Moolenaar
Bram@...
Sep 30, 2000 7:30 pm
... Right, mixing the loading of vimrc files with plugins is only causing confusion. However, I like the idea of "vim -u NONE" not loading a plugin. Then it's...
15449
Bram Moolenaar
Bram@...
Sep 30, 2000 7:30 pm
... You must have 'ignorecase39; set. It's used by [a-z] but not by \l. -- hundred-and-one symptoms of being an internet addict: 79. All of your most erotic...
15450
Bram Moolenaar
Bram@...
Sep 30, 2000 7:31 pm
... Hmm, you might as well ask to mix all other kinds of folding too... Is there a generic solution? Perhaps first fold on markers, and then another method...
15451
Bram Moolenaar
Bram@...
Sep 30, 2000 7:31 pm
... I can't add it just like this. It means that when FEAT_VIRTUALEDIT is defined the operated area is never empty. I'm sure some commands will work ...
15452
Bram Moolenaar
Bram@...
Sep 30, 2000 7:32 pm
... Are these different from zl and zr? ... gm? ... g0? ... g$? ... Looks like these are new. -- hundred-and-one symptoms of being an internet addict: 91. It's...
15453
Bram Moolenaar
Bram@...
Sep 30, 2000 7:33 pm
... I don't think it's an error. But I also like to flag spaces that shouldn't be there. How about this (like it's in c.vim): if exists("nroff_space_errors") ...
15454
Johannes Zellner
johannes@...
Sep 30, 2000 9:15 pm
Hello, What about having a string escape in keywordprg ? e.g. set keywordprg=w3m92; /web/reference/html40/%s.html ^^ where the %s is substituted by <cword> -- ...
15455
Johannes Zellner
johannes@...
Sep 30, 2000 10:16 pm
... ok for me. -- Johannes...
15456
Johannes Zellner
johannes@...
Sep 30, 2000 10:17 pm
... As it worked for you I had to seach my problem in my setup: It is due to an autocmd which does a 'cd' on every BufEnter to the current dir. This way %...