... I think it's reasonable, taking into account that #! is illegal comand-come command (:# does not take !). Yakov...
Yakov Lerner
iler.ml@...
Aug 1, 2006 9:30 am
44355
On Mon, 31 Jul 2006 16:19:28 -0300, "Rodolfo Borges" ... One way is to create a file that is both a valid shell script and a valid Vim script by starting the...
Matthew Winn
vim@...
Aug 1, 2006 11:20 am
44356
(On the list, please?) ... Probably because - as Tony noted (above) - '#' itself is potentially a valid command? (But I still say this is a reasonable...
mwoehlke
mwoehlke@...
Aug 1, 2006 3:26 pm
44357
... OK, with this (I also included a "-u NONE") I was unable to select the bottom window by clicking on it. Interestingly, after a ctrl-w j to select the...
Charles E Campbell Jr
drchip@...
Aug 1, 2006 3:59 pm
44358
... I didn't include -U NONE (with uppercase U) for two reasons, each of which is sufficient by itself: 1) -u NONE (with lowercase u) suppresses sourcing of...
A.J.Mechelynck
antoine.mechelynck@...
Aug 1, 2006 4:38 pm
44359
... This could be a quite dangerous measure as any unrecognised line will be totally ignored. Moreover, many Makefiles include other commands, and their output...
Nicolas Schodet
nico@...
Aug 1, 2006 7:27 pm
44360
I wanted to open a new tab, to edit three files, splited in their own three windows. I tried ":tabe file1 file2 file3", vim complained "Only one file name...
Rodolfo Borges
rodolfo.borges@...
Aug 1, 2006 10:39 pm
44361
... What does already work is, for instance ... or (untested; v7 only) command! -nargs=* complete=file -bar Split \ call s:Split(<f-args>) function!...
A.J.Mechelynck
antoine.mechelynck@...
Aug 1, 2006 10:43 pm
44362
hello, I am trying to emulate textpad. In textpad, when cursor is over some word and you press ctrl-f5 the search box pops up, and a word is in the input area....
Denis Perelyubskiy
lists@...
Aug 2, 2006 12:26 am
44363
Hi, the automated mechanism for unsubsrcibing from this list still doesn't work. Could please someone remove me from the list? Thanks, -- -lauther ... Ulrich...
... It only kills the * register (the clipboard) if you have ":set clipboard=unnamed". Otherwise it clobbers only registers " (the "unnamed" or default...
A.J.Mechelynck
antoine.mechelynck@...
Aug 2, 2006 10:33 am
44366
... The list is operated only by non-humans (computers and programs, I mean). The people at fu-berlin math department will let the computer auto-reboot and...
A.J.Mechelynck
antoine.mechelynck@...
Aug 2, 2006 11:09 am
44367
... Well, if the "Return-Path:" headers of the ail you get from the list include "vim-return-<number>-ulrich-lauther=siemens.com@..." then the addresses...
A.J.Mechelynck
antoine.mechelynck@...
Aug 2, 2006 5:43 pm
44368
... Actually it does! I just unsubscribed from my old address, and subscribed using my new email address. Just follow the instructions carefully. ... I think...
Gautam Iyer
gautam@...
Aug 2, 2006 6:38 pm
44369
... The <cword> on command line expands to the word under the cursor. I generally use command! PartialWordGrep grep -I <cword> *.* in my ~/.vimrc, which is...
Gautam Iyer
gautam@...
Aug 2, 2006 6:42 pm
44370
... what instructions? The only one I see is on http://www.vim.org/maillist.php#vim-dev: To Unsubscribe email vim-dev-unsubscribe@... Email to that...
Ulrich Lauther
ulrich.lauther@...
Aug 3, 2006 8:32 am
44371
... Don't assume anything. Check, double-check, try again while checking that you didn't swap any characters in the address, and if it still doesn't work, ask...
A.J.Mechelynck
antoine.mechelynck@...
Aug 3, 2006 9:31 am
44372
Bug description: =============== Vim version 7.0 When receiving a netbeans 'close' command, vim does delete the specified buffer, but the buffer's reference...
Xavier de Gaye
xdegaye@...
Aug 3, 2006 9:48 pm
44373
Hello, Vim 7.0 has been out for some time now and also has a host of new features and I, for example, have added all the new stuff to the Ada support [1]. But...
Martin Krischik
krischik@...
Aug 4, 2006 2:08 pm
44374
... I couldn't do this in vim. Vim only has syntax coloring with regexps. Emacs has functions to apply properties to text blocks, and I was hoping vim has...
Mohsin
golden.drongo@...
Aug 4, 2006 4:43 pm
44375
... - Many runtime files, and in particular most of the help files, have been reissued with new or updated contents for version 7.0. You should find them, for...
A.J.Mechelynck
antoine.mechelynck@...
Aug 4, 2006 6:29 pm
44376
... From :help /ordinary-atom Overview of ordinary atoms. */ordinary-atom* More explanation and examples below, follow the links. ... Maybe this...
Ilya
ilya@...
Aug 4, 2006 7:07 pm
44377
... m....
Mikolaj Machowski
mikmach@...
Aug 4, 2006 7:22 pm
44378
... Vim regexps allow you to specify line and/or column numbers. Example, to match a block defined by lines 55 to 77, virtual columns 15 to 37, and highlight...
A.J.Mechelynck
antoine.mechelynck@...
Aug 4, 2006 7:29 pm
44379
... The reason is, the matches on both sides of \& must "match" (i.e., start) at the same place. By using > and < and matching one character at a time we catch...
A.J.Mechelynck
antoine.mechelynck@...
Aug 4, 2006 8:23 pm
44380
[Mikolaj Machowski] ... Humph, not really! Text properties in Emacs span text regions, which move, expand or shrink while text is being edited outside or...
François Pinard
pinard@...
Aug 4, 2006 8:39 pm
44381
... The fix looks good to me. I'll include the patch and test it a bit. ... Incrementing the netbeans interface version number for this doesn't sound like a...
Bram Moolenaar
Bram@...
Aug 4, 2006 10:06 pm
44382
I already tried your solution, it only works for a single region at a time On applying the same higlighting to second region and the first one is ...
Mohsin
golden.drongo@...
Aug 4, 2006 11:04 pm
44383
The problem is I want to apply the highlighting to multiple blocks of text simultaneously, so regexp doesn't help. mohsin....