RE: issues with taglist and minibuffer explorer

2006-05-02 Thread jagpreet
-Original Message- From: James Vega [mailto:[EMAIL PROTECTED] Sent: Monday, May 01, 2006 7:15 PM To: Vim mailing list Subject: Re: issues with taglist and minibuffer explorer On Mon, May 01, 2006 at 06:45:24PM +0530, jagpreet wrote: > Hi There, > > I'm using two most downloaded vim plu

Re: :hardcopy E673 in gVim on GTK2

2006-05-02 Thread Steve Hall
On Mon, 2006-05-01 at 22:15 -0400, Benji Fisher wrote: > On Mon, May 01, 2006 at 05:31:47PM -0400, Steve Hall wrote: > > > > Yes, the bug is in &printencoding. With gvim -u NONE -U NONE, > > these lines produce the error: > > > > :let &printencoding = &encoding > > :hardcopy > > > > This is

Re: Tabline function sometimes recalled when highlighting set/changed.

2006-05-02 Thread Bram Moolenaar
Eric Arnold wrote: > I haven't been idle on this. I was unable to get my test case working > for a simple but un-obvious reason. It requires that at least one > other window be open. > > Run the following, and open two windows. Edit a file in one. Open a > new line, which I assume triggers t

RE: 70f - Scroll wheel scrolls wrong window

2006-05-02 Thread David Fishburn
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Monday, May 01, 2006 6:14 PM > To: David Fishburn > Cc: vim@vim.org > Subject: Re: 70f - Scroll wheel scrolls wrong window > > > David Fishburn wrote: > > > Though I cannot reproduce it, this has been ha

Re: :hardcopy E673 in gVim on GTK2

2006-05-02 Thread Bram Moolenaar
Steve Hall wrote: > On Mon, 2006-05-01 at 22:15 -0400, Benji Fisher wrote: > > On Mon, May 01, 2006 at 05:31:47PM -0400, Steve Hall wrote: > > > > > > Yes, the bug is in &printencoding. With gvim -u NONE -U NONE, > > > these lines produce the error: > > > > > > :let &printencoding = &encoding

Re: vimgrep with ':hide' command modifier does not keep buffers loaded?

2006-05-02 Thread Yakov Lerner
On 5/2/06, John Player <[EMAIL PROTECTED]> wrote: "To be able to do this Vim loads each file as if it is being edited. When there is no match in the file the associated buffer is wiped out again. The 'hidden' option is ignored here to avoid running out of memory or file descriptors when searchi

regex @vim, negating a group

2006-05-02 Thread o1792
Hi vimmers, When searching through text files using regex, I am trying unsuccessfully to negated a complicated pattern without success. What doesn't help is the double usage of the circumflex ^ character (may also be called caret, not sure), because it also means start of a line. However when

Re: Tabline function sometimes recalled when highlighting set/changed.

2006-05-02 Thread Benji Fisher
On Tue, May 02, 2006 at 02:17:58PM +0200, Bram Moolenaar wrote: > > Eric Arnold wrote: > > > I haven't been idle on this. I was unable to get my test case working > > for a simple but un-obvious reason. It requires that at least one > > other window be open. > > > > Run the following, and open

Re: :hardcopy E673 in gVim on GTK2

2006-05-02 Thread Steve Hall
From: Bram Moolenaar <[EMAIL PROTECTED]>, May 2, 2006 9:22 AM > > "utf-8" is not a valid value for 'printencoding'. It must be an > 8-bit character set. > > The help mentions that it would fall back to "latin1" when > 'printencoding' is not a supported encoding, but this apparently > doesn't hap

RE: 70f - Scroll wheel scrolls wrong window

2006-05-02 Thread Bram Moolenaar
David Fishburn wrote: > > -Original Message- > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > > Sent: Monday, May 01, 2006 6:14 PM > > To: David Fishburn > > Cc: vim@vim.org > > Subject: Re: 70f - Scroll wheel scrolls wrong window > > > > > > David Fishburn wrote: > > > > > Th

RE: 70f - Scroll wheel scrolls wrong window

2006-05-02 Thread David Fishburn
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 02, 2006 10:37 AM > To: David Fishburn > Cc: vim@vim.org > Subject: RE: 70f - Scroll wheel scrolls wrong window > > > David Fishburn wrote: > > > > -Original Message- > > > From: [E

Re: regex @vim, negating a group

2006-05-02 Thread Charles E Campbell Jr
o1792 wrote: Hi vimmers, When searching through text files using regex, I am trying unsuccessfully to negated a complicated pattern without success. ...snip... May I suggest that you look into LogiPat, http://vim.sourceforge.net/scripts/script.php?script_id=1290 which is useful for se

RE: vimgrep with ':hide' command modifier does not keep buffers loaded?

2006-05-02 Thread John Player
> -Original Message- > From: Yakov Lerner [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 02, 2006 9:46 AM > > On 5/2/06, John Player <[EMAIL PROTECTED]> wrote: > > "To be able to do this Vim loads each file as if it is > being edited. When > > there is no match in the file the associate

Re: regex @vim, negating a group

2006-05-02 Thread Gerald Lai
On Tue, 2 May 2006, o1792 wrote: [snip] if you want to find anything that is not any word ending in "ion", well the regex group you're looking at is \(\<.\+ion\>\), but how do you negate that? Put it all in square brackets and provide a caret ^ at the beginning? Nope. in fact group within square

Re: regex @vim, negating a group

2006-05-02 Thread Yakov Lerner
On 5/2/06, o1792 <[EMAIL PROTECTED]> wrote: Hi vimmers, When searching through text files using regex, I am trying unsuccessfully to negated a complicated pattern without success. What doesn't help is the double usage of the circumflex ^ character (may also be called caret, not sure), because i

Re: vimgrep with ':hide' command modifier does not keep buffers loaded?

2006-05-02 Thread Yakov Lerner
On 5/2/06, John Player <[EMAIL PROTECTED]> wrote: > -Original Message- > From: Yakov Lerner [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 02, 2006 9:46 AM > > On 5/2/06, John Player <[EMAIL PROTECTED]> wrote: > > "To be able to do this Vim loads each file as if it is > being edited. Whe

Re: Tabline function sometimes recalled when highlighting set/changed.

2006-05-02 Thread Bram Moolenaar
Benji Fisher wrote: > On Tue, May 02, 2006 at 02:17:58PM +0200, Bram Moolenaar wrote: > > > > Eric Arnold wrote: > > > > > I haven't been idle on this. I was unable to get my test case working > > > for a simple but un-obvious reason. It requires that at least one > > > other window be open.

Re: :hardcopy E673 in gVim on GTK2

2006-05-02 Thread Bram Moolenaar
Steve Hall wrote: > > "utf-8" is not a valid value for 'printencoding'. It must be an > > 8-bit character set. > > > > The help mentions that it would fall back to "latin1" when > > 'printencoding' is not a supported encoding, but this apparently > > doesn't happen. > > This must have changed

Re: regex @vim, negating a group

2006-05-02 Thread James Vega
On Tue, May 02, 2006 at 08:27:49PM +0300, Yakov Lerner wrote: > On 5/2/06, o1792 <[EMAIL PROTECTED]> wrote: > BTW, can anyone explain why this pattern does *not* > work, does not match words that do not end with 'ion' : >/\i\+\(ion\)[EMAIL PROTECTED]/ > I thought this pattern would match words

RE: vimgrep with ':hide' command modifier does not keep buffers loaded?

2006-05-02 Thread John Player
Hi Yakov, Thank you for taking your time to verify this issue. See below. > -Original Message- > From: Yakov Lerner [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 02, 2006 1:41 PM [snip] > > So I guess the help for 'vimgrep' is wrong and the buffers are not > > kept loaded -- vim just

Re: vimgrep with ':hide' command modifier does not keep buffers loaded?

2006-05-02 Thread Yakov Lerner
On 5/2/06, John Player <[EMAIL PROTECTED]> wrote: > > So I guess the help for 'vimgrep' is wrong and the buffers are not > > kept loaded -- vim just remembers there file names. > > I made small experiment that shows that help for 'hide vimgrep' > is correct. > > I created 60MB size file x so that

Re: Vim version 7.0g BETA has been released

2006-05-02 Thread Robert Hicks
Bram Moolenaar wrote: Gene Kwiecinski wrote: - Win32: Dropping a shortcut on the Vim icon edited the shortcut instead of the file it refers to (old problem). Any way to actually edit the shortcut? :D Yes, set 'binary' before editing the file. Well, that requires the "-b" argument somehow

RE: vimgrep with ':hide' command modifier does not keep buffers loaded?

2006-05-02 Thread John Player
> -Original Message- > From: Yakov Lerner [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 02, 2006 3:03 PM > > On 5/2/06, John Player <[EMAIL PROTECTED]> wrote: > > > > So I guess the help for 'vimgrep' is wrong and the > buffers are not > > > > kept loaded -- vim just remembers there fil

one input to many lines

2006-05-02 Thread marcelo
Hi. My name is Marcelo I'm new in this list and in VIM. My question is about one "input" to many lines and columns in just one render (evaluation, returns ...) For example, if i have a table of numbers and need add 10 for the forth columns in the 420, 530 and 710 lines. Could you point any script,

Re: one input to many lines

2006-05-02 Thread Tim Chase
Hi. My name is Marcelo I'm new in this list and in VIM. Welcome! My question is about one "input" to many lines and columns in just one render (evaluation, returns ...) For example, if i have a table of numbers and need add 10 for the forth columns in the 420, 530 and 710 lines. Could you poi

:tbuffer?

2006-05-02 Thread Suresh Govindachar
Hello, I could not find the command to open a buffer in its own tab -- what is it? (Somewhat like :sbuffer splits the window and opens the buffer whose name uniquely matches ). Thanks, --Suresh

RE: :tbuffer?

2006-05-02 Thread Suresh Govindachar
A little while ago, I asked: > I could not find the command to open a buffer in its own tab -- > what is it? (Somewhat like :sbuffer splits the window > and opens the buffer whose name uniquely matches ). Found it -- use :tab to modify the command. --Suresh

Re: Tabline function sometimes recalled when highlighting set/changed.

2006-05-02 Thread Eric Arnold
On 5/2/06, Bram Moolenaar <[EMAIL PROTECTED]> wrote: Benji Fisher wrote: > On Tue, May 02, 2006 at 02:17:58PM +0200, Bram Moolenaar wrote: > > > > Eric Arnold wrote: > > > > > I haven't been idle on this. I was unable to get my test case working > > > for a simple but un-obvious reason. It re