motion t} does not work

2012-05-02 Thread A Loumiotis
Hi, The motion t{char} does not work when the character I choose is "}". Does anyone know why? I use gvim 7.3 on Windows XP. Thanks, Antonis -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit

RE: motion t} does not work

2012-05-02 Thread John Beckett
A Loumiotis > The motion t{char} does not work when the character I choose is "}". > Does anyone know why? > I use gvim 7.3 on Windows XP. Please spell out what happens and what you expect. Does it work after starting with 'vim -N -u NONE'? On next line, 0vt} correctly selects 'abc{def' on my sy

Re: motion t} does not work

2012-05-02 Thread A Loumiotis
Thank you for your help John. Your example does work. I now realize that t{char} is a line motion. I thought (wrongly) it was looking for the first matching character to the right or below where the cursor is. Is there a way to quickly select all text starting from the current position of the cu

Re: motion t} does not work

2012-05-02 Thread Christian Brabandt
On Mi, 02 Mai 2012, A Loumiotis wrote: > For example if the cursor is between d and e on the next two lines > > abc{def > ghijkl}mn > > I would like to figure out a quick way for Vim to select > > 'ef > ghijkl' The plugin ft_improved http://www.vim.org/scripts/script.php?script_id=3877 does th

Re: motion t} does not work

2012-05-02 Thread A Loumiotis
On Wed, May 2, 2012 at 3:48 PM, Christian Brabandt wrote: > On Mi, 02 Mai 2012, A Loumiotis wrote: >> For example if the cursor is between d and e on the next two lines >> >> abc{def >> ghijkl}mn >> >> I would like to figure out a quick way for Vim to select >> >> 'ef >> ghijkl' > > The plugin ft_

Re: motion t} does not work

2012-05-02 Thread Ben Fritz
On Wednesday, May 2, 2012 7:33:15 AM UTC-5, runner wrote: > Thank you for your help John. > Your example does work. > > I now realize that t{char} is a line motion. I thought (wrongly) it > was looking for the first matching character to the right or below > where the cursor is. > > Is there a w

Re: motion t} does not work

2012-05-02 Thread Chris Lott
On Wed, May 2, 2012 at 6:55 AM, Ben Fritz wrote: > On Wednesday, May 2, 2012 7:33:15 AM UTC-5, runner wrote: >> >> Is there a way to quickly select all text starting from the current >> position of the cursor to the specified character even if the >> specified character is not on the same line? >>