A few weeks ago I have visited Vim's charityware project in Uganda. You can find my report with a few pictures here: http://iccf-holland.org/news.html If you...
Bram Moolenaar
Bram@...
Jul 2, 2003 8:22 pm
950
Does Vim uses Unicode Normalization (in any way) in its search (and other text tools and filters) ? We started enabling Persian/Arabic support in Vim, that...
Behnam Esfahbod
behnam@...
Jul 29, 2003 3:27 pm
951
... Not much. Ignoring case is mostly handled correctly. You can use the "\Z" item to ignore differences in combining characters, that's about it. ... Vim...
Bram Moolenaar
Bram@...
Jul 29, 2003 3:47 pm
952
... but unicode norm. is more than just latin-combining-characters. ... All of these GNU tools (most in glibc) are implemented in C and are FreeSoftware and...
Behnam Esfahbod
behnam@...
Jul 29, 2003 4:10 pm
953
... Yes, it's currently limited in functionality. ... I don't want to include GNU code, because it means I am forced to use the GPL. Vim uses a different...
Bram Moolenaar
Bram@...
Jul 29, 2003 4:42 pm
954
I think my prev. reply was very bad-written. FriBibi is an implementation of Unicode Bidi alg. and it's Arabic-script prof. and current mentainer is Behdad, my...
Behnam Esfahbod
behnam@...
Jul 29, 2003 6:08 pm
955
... Oh, if you have written code yourself and are willing to let me include it with Vim under the Vim license, then that part is taken care of. Note that the...
Bram Moolenaar
Bram@...
Jul 29, 2003 7:36 pm
956
... I forgot to say that now FriBidi is a GNU Project and the GNU implementation of Unicode BiDi algorithm. So I don't know that we can use it in another...
Behnam Esfahbod
behnam@...
Jul 29, 2003 8:27 pm
957
... [...] ... If you wrote the code, then you can distribute it under several licenses. The GPL doesn't mention this, but in discussions about making the Vim...
Bram Moolenaar
Bram@...
Jul 30, 2003 11:41 am
958
... In that case a configure check would need to be used. Don't know how it would work on MS-Windows though. Is there a fribidi.dll available? Then it could...
Hello, I found that iminsert option is not working when Korean IME is active. When using Japanese IME, it worked fine. Here is the patch for this problem: diff...
Sangpil Yoon [sangpil]
sangpil@...
Aug 14, 2003 7:29 am
961
I object to your patch, because of two reasons. First, it is not enough for dyn/ime. But it is easy to fix. Second, it has a bad side effect for Japanese...
MURAOKA Taro
koron@...
Aug 14, 2003 8:38 am
962
... Sorry about that, I didn't know that. ... I tried your patch, but it had another problem for Korean IME. :( When exiting from insert mode, it is expected...
Sangpil Yoon [sangpil]
sangpil@...
Aug 14, 2003 10:35 am
963
... No problem. ... Yes, it seems good for me. But to make it surely and safely, we should control conversion-status for only Korean. Please check attached...
MURAOKA Taro
koron@...
Aug 14, 2003 11:02 am
964
... I'm glad you are checking these changes and proposing a correction. I find it strange that an exception is made for one language. I don't see why Korean...
Bram Moolenaar
Bram@...
Aug 14, 2003 6:02 pm
965
... Due to a bug in Korean IME. ImmSetOpenStatus() call has no effect in Korea IME. I've confirmed that this bug exists in Windows 98 and 2000, but have no...
Sangpil Yoon [sangpil]
sangpil@...
Aug 15, 2003 1:08 am
966
... Over the years many small changes have been made to the multi-byte code to handle exceptions. The code is getting more and more complicated, while there...
Bram Moolenaar
Bram@...
Aug 15, 2003 8:11 am
967
Hi, I'm developing a language similar to the arabic language on windows XP, using vim6.0 and using gvim and using utf-8 I have the following problem, and I...
Hichem Fadali
hfadali@...
Aug 16, 2003 11:36 pm
968
Hi, I'm developing a language similar to the arabic language on windows XP, using vim6.0 and using gvim and using utf-8 I have the following problem, and I...
Hichem Fadali
hfadali@...
Aug 16, 2003 11:50 pm
969
Hi. I am trying to fix IME status to be off when I start up VIM. When I startup vim with an empty document and move to INSERT mode by typing "i", IME will be...
hiroji kimura
hirojik@...
Aug 17, 2003 1:56 am
970
... MURAOKA Taro <koron@...>...
MURAOKA Taro
koron@...
Aug 17, 2003 6:52 am
971
... I've suggested in the past that this be the default in Windows, since it's very bizarre for a Windows application to default to IME mode. -- Glenn Maynard...
Glenn Maynard
glenn@...
Aug 17, 2003 2:33 pm
972
We have created the Persian-Iranian keymap file for Vim based on Persian Standard Keyboard Layout.
As utf-8 is the only encoding for Persian on Linux, we...
Behnam Esfahbod , Ami...
amir@...
Aug 18, 2003 2:07 am
973
Behnam - ... Thanks. I'll include it. Don't forget to send me a new version when you make improvements. - Bram -- hundred-and-one symptoms of being an...
Bram Moolenaar
Bram@...
Aug 18, 2003 9:10 am
974
See the attached file for details...
stric@...
Aug 20, 2003 12:46 pm
975
See the attached file for details...
koron@...
Aug 22, 2003 9:17 am
976
Vim search patterns are regular expressions. Several times the question has come up whether there is a good book for learning to use regular expressions. The...