Hello, http://lostclus.linux.kiev.ua/patches/all/vim70-langmapctrl.patch Make Ctrl-foo keys works without switching between languages. Uses langmap to...
2241
Konstantin Korikov
lostclus@...
Oct 15, 2006 10:40 am
... This patch have a mistake here: /* insert new page at position a */ pages = (langmap_page_T*)(langmap_pages.ga_data) + a; mch_memmove(pages + 1, pages, ...
2242
Bram Moolenaar
Bram@...
Oct 15, 2006 1:22 pm
... Looks OK. The lookup will be a little slower, but I doubt if someone would notice. I wonder if there is any "to" entry that doesn't fit in 8 bits. All ...
2243
Konstantin Korikov
lostclus@...
Oct 15, 2006 2:48 pm
... I added such warning. http://lostclus.linux.kiev.ua/patches/all/vim70-langmapmb-4.patch -- Best regards, Konstantin Korikov ... eel2-2.14.3 - Eazel...
2244
vim-multibyte-help@...
Nov 3, 2006 1:48 pm
Hi! This is the ezmlm program. I'm managing the vim-multibyte@... mailing list. I'm working for my owner, who can be reached at...
2245
erik@...
Nov 16, 2006 6:44 am
2246
bram@...
Nov 18, 2006 5:37 pm
The message cannot be represented in 7-bit ASCII encoding and has been sent as a binary attachment....
2247
mikmach@...
Nov 21, 2006 10:18 pm
2248
ocean
zhudonghai@...
Nov 25, 2006 7:25 am
When I set encoding to utf-8 and let $lang zh_CN.UTF-8, the tooltips can't display correctly and the popup menu on tabpage also. I found the problem is that...
2249
A.J.Mechelynck
antoine.mechelynck@...
Nov 25, 2006 8:15 am
... I may be wrong, but I think this problem was addressed by a recent bugfix. Which version and patchlevel are you using? (See the first five lines from the ...
2250
ocean
zhudonghai@...
Nov 25, 2006 10:53 am
Thanks. I have solved the problem....
2251
vim-multibyte-help@...
Dec 10, 2006 12:44 am
Hi! This is the ezmlm program. I'm managing the vim-multibyte@... mailing list. I'm working for my owner, who can be reached at...
2252
Bram Moolenaar
Bram@...
Dec 11, 2006 9:01 pm
Dear Vim users, The traditional Vim calendar has been updated for 2007! This is a desktop calendar for 2007, made from one sheet of paper. After folding, one...
2253
Marijn
vim@...
Jan 3, 2007 10:06 pm
Hi, I think I found a bug in Vim's UTF8 handling. I've spend 2 days debugging, testing and hair pulling, but I coudn't find the solution the problem and now I...
2254
A.J.Mechelynck
antoine.mechelynck@...
Jan 3, 2007 11:28 pm
... 1. Is your Vim executable built with +multi_byte? ... should answer 1 If the answer is zero, you should install a Vim executable with +multi_byte ...
2255
Marijn
vim@...
Jan 4, 2007 12:17 am
... 1) Yes, it's compiled with multi_byte: ... VIM - Vi IMproved 7.0 (2006 May 7, compiled Jan 2 2007 00:32:34) Included patches: 1-17 Modified by...
2256
Kenneth Reid Beesley
krbeesley@...
Jan 4, 2007 8:51 am
I'm interested in using Vim to edit files with Unicode supplementary chars, like Shavian and Deseret Alphabet. I have Vim 7.0 running and have written vim...
2257
A.J.Mechelynck
antoine.mechelynck@...
Jan 4, 2007 12:15 pm
... I think that Vim is incapabale of displaying codepoints above U+FFFF, but I'm not 100% sure. It is a problem for CJK too, since some hanzi are in plane 2 ...
2258
Marijn
vim@...
Jan 4, 2007 6:28 pm
... I've just fetched all the patches, patched vim and tried it again: VIM - Vi IMproved 7.0 (2006 May 7, compiled Jan 4 2007 19:12:01) Included patches:...
2259
Marijn
vim@...
Jan 4, 2007 6:52 pm
... Thanks for the reply Tony, but everything is really utf8: All the files return: encoding=utf-8 fileencoding=utf-8 Best regards, Marijn...
2260
A.J.Mechelynck
antoine.mechelynck@...
Jan 4, 2007 8:00 pm
... The last paragrapg there (about 'guifontwide39; etc.) seems inaccurate. I have the same at ":help Unicode" in the Vim help but IMHO what is said under ":help...
2261
Bram Moolenaar
Bram@...
Jan 6, 2007 8:31 pm
... The problem is in Python, this is a Python error message. This has nothing to do with Vim. I guess you somehow have to put Python in utf-8 mode first....
2262
Marijn
vim@...
Jan 6, 2007 11:44 pm
... You were correct. Thanks a million. ... I added: "u.encode('utf-8')" and it worked flawlessly. After adding the same to my original code, that worked as...
2263
Yukihiro Nakadaira
yukihiro.nakadaira@...
Jan 13, 2007 2:29 pm
... as Tab. To reset attribute for multibyte character is forgotten. It seems that the current code intend to show multibyte character always with normal...
2264
A.J.Mechelynck
antoine.mechelynck@...
Jan 13, 2007 2:30 pm
... Yes, at the moment I see multibyte chars (between tabs) in blue if 'list' is on and 'listchars39; includes a "tab:" part. If 'list' is off, or if 'listchars39;...
2265
Bram Moolenaar
Bram@...
Jan 13, 2007 8:24 pm
... Yes, that is a good fix. ... This will make it clear what is literal text and what is translated. I suppose this will be an improvement. -- How To Keep A...
2266
Yukihiro Nakadaira
yukihiro.nakadaira@...
Jan 19, 2007 4:47 pm
According to src/edit.c 4971 if (compl_curr_match->cp_number != -1) 4972 { 4973 /* Space for 10 text chars. + 2x10-digit no.s */ 4974 static char_u...
2267
Bram Moolenaar
Bram@...
Jan 19, 2007 8:41 pm
... Yes, the size is too small for translated messages. Also, we can now use vim_snprintf() instead of using IObuff. Please try this patch: ... ...
2268
Yukihiro Nakadaira
yukihiro.nakadaira@...
Jan 20, 2007 10:33 am
... I tried that patch and it worked. Thank you. -- Yukihiro Nakadaira - yukihiro.nakadaira@......
2269
Bram Moolenaar
Bram@...
Feb 6, 2007 4:02 am
Dear Vim users, I will be doing a presentation on Vim, here is the announcement: Open Source Developers @ Google Speaker Series: Bram Moolenaar Tuesday,...