Re: Go to Japanese character

2015-11-30 Thread bob beckett
On Thursday, November 19, 2015 at 1:38:00 PM UTC-8, bob beckett wrote: > I have created a Japanese-English vocabulary list for my personal use. > > Oftentimes I want to go to the first non-ASCII character in a line. > > Can anyone suggest a way to accomplish this? Maybe a remapping? > > Thanks

Re: Go to Japanese character

2015-11-28 Thread Benjamin R. Haskell
On Mon, Nov 23, 2015 at 10:45 AM, bob beckett wrote: > On Thursday, November 19, 2015 at 1:38:00 PM UTC-8, bob beckett wrote: > > I have created a Japanese-English vocabulary list for my personal use. > > > > Oftentimes I want to go to the first non-ASCII character in a

Re: Go to Japanese character

2015-11-23 Thread Charles E Campbell
bob beckett wrote: > On Thursday, November 19, 2015 at 1:38:00 PM UTC-8, bob beckett wrote: >> I have created a Japanese-English vocabulary list for my personal use. >> >> Oftentimes I want to go to the first non-ASCII character in a line. >> >> Can anyone suggest a way to accomplish this? Maybe a

Re: Go to Japanese character

2015-11-23 Thread Tony Mechelynck
On Mon, Nov 23, 2015 at 8:24 PM, Charles E Campbell wrote: > bob beckett wrote: >> On Thursday, November 19, 2015 at 1:38:00 PM UTC-8, bob beckett wrote: >>> I have created a Japanese-English vocabulary list for my personal use. >>> >>> Oftentimes I want to go to the

Re: Go to Japanese character

2015-11-23 Thread bob beckett
On Thursday, November 19, 2015 at 1:38:00 PM UTC-8, bob beckett wrote: > I have created a Japanese-English vocabulary list for my personal use. > > Oftentimes I want to go to the first non-ASCII character in a line. > > Can anyone suggest a way to accomplish this? Maybe a remapping? > > Thanks

Re: Go to Japanese character

2015-11-23 Thread Random832
On 2015-11-23, bob beckett wrote: > Thank you for your suggestion. Unfortunately, it finds all non-ASCII > characters in the entire file, and it does not move the cursor to the first > Japanese (i.e. non-ASCII) character in the current line. And does what with them,

Go to Japanese character

2015-11-19 Thread bob beckett
I have created a Japanese-English vocabulary list for my personal use. Oftentimes I want to go to the first non-ASCII character in a line. Can anyone suggest a way to accomplish this? Maybe a remapping? Thanks -- -- You received this message from the "vim_use" maillist. Do not top-post! Type

Re: Go to Japanese character

2015-11-19 Thread Eike Rathke
Hi bob, On Thursday, 2015-11-19 11:20:26 -0800, bob beckett wrote: > Oftentimes I want to go to the first non-ASCII character in a line. /[^ -~] Searches for a character not in the range from 0x20 space to 0x7E tilde. Assuming you don't use control characters or 0x7F delete ;-) Eike --