Hi, Bram and all. I'm Yasuhiro Matsumoto. I made a patch for 'message line'. This make 'message line' showing multi-byte. How about this? ... *************** ...
Hello. I re-made a experimental patch for supporting Global IME on Vim for Windows. You can get compiled binary here. If you want to test Global IME...
Hello. I made a experimental patch for supporting Global IME on Vim for Windows. Global IME makes capability to input Chinese, Japanese, and Korean text into...
Below is a new version of the on-line help file for multi-byte. It has been expanded by Takuhiro Nishioka. Please have a look and give me suggestions for...
Hello, Bram Moolenaar and vim-multibyte. There is one problem of multibyte character input. It is cannot input CSI (0x9B) as a part of multibyte character,...
Hi. if replacing double-byte with single-bute, cursor move next. I made patch. ... *************** *** 4533,4539 **** else if (IsLeadByte(prechar)) { ...
Oleg Raisky has updated his Vim reference guide to Vim version 5.6. This is the best Vim reference booklet I know. It is about 50 pages and contains a short...
... If it's possible to do this with one option instead of two, that looks like a good solution. Would be easier for the user, right? But perhaps there is a ...
... That is very nice. I looked through your changes and it they appear to be small. However, a few changes look like they might cause problems when used in...
... I see the problem. Thanks for making a patch for this. I'll bring it out as an official patch, with the extra check for NUL added: ... *************** ...
As you all know (or should know), Vim is distributed under the charityware concept: If you like using Vim, you are requested to help a childrens centre in...
Not too long ago, Matsumoto made a patch to fix a multi-byte problem with the tear-off menu and dialog fonts. This was then enhanced by Muraoka. I now added...
Here is a script for formatting multibyte text, the language which do not insert spaces between words. Originally written by Taro Muraoka, modified by Takuhiro...
Dear Rob, I heard your patch from Mr. Nam and find it in vim-dev mailing list. (I'm not subscribed the mailing list. I just see it via egroups.com) The...
... I understand the problem now. How about this patch to fix it: ... *************** ... { for (;;) { + #ifdef MULTI_BYTE + if (is_dbcs && dir > 0 &&...
Dear Robert, Bram and vim-multibyte teams, I make another patch based on the Robert's work. I make some code clean up. screen_char_needs_redraw() is becomes...
... OK, thus the X-input method (XIM) is required for this. ... Enabling the XIM by default might cause problems for some people. I would not want to take the...
Hello, vim-multibyte. I add new two eval functions. These work as interface to IsLeadByte and IsTrailByte C function. It make easy to create script that treat...
The binary for Vim version 5.6 is now also available for the Macintosh. It was compiled and packed by Dany St-Amant. Directory: ftp://ftp.vim.org/pub/vim/mac ...
Dar Vimmers, It seems that there is no FAQ for this list (according to the mail list handler, anyway) and I can not locate an indexed archive, so I hope you...
I made patch because the substitution of the multi-byte character wasn't good. (For example when typing 'r' or 'R') It was changed to work as follows. ... ...
Hi , Bram This is about console version. Vim is mistaken for CSI if 0x9B is contained in the multi-byte character. At this time, until a time-out is done, Vim...
When cursor reach FEP(Front End Processor) line on consle mode, if starting FEP then screen is scrolled up. (For example, When you edit command...) I could not...