Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

vim-multibyte · Vim (Vi IMproved) text editor special language list

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 343 - 372 of 2762   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
343 Bram Moolenaar
bram@... Send Email
Feb 13, 2001
12:49 pm
In the new Vim 6.0v I have added a list of aliases for encoding names. Some of these have been guessed, several are probably missing. Please check this list....
344 Takuhiro Nishioka
vim-multibyte-egroups... Send Email
Feb 14, 2001
2:18 am
Hello, ... For Japanese, there are "eucjp" and "shift-jis". I think it is more reasonable to use the precise charset name: "euc-jp" and "shift_jis" or to add...
345 Takuhiro Nishioka
vim-multibyte-egroups... Send Email
Feb 14, 2001
3:02 am
Hello, I've noticed 2 XIM problems on Vim60v. Just report, not investigated enough. Environment: OS: FreeBSD 4.2-STABLE iconv: libiconv 1.5.1 Vim: GTK GUI...
346 Bram Moolenaar
bram@... Send Email
Feb 15, 2001
9:09 pm
... OK. I'm currently using "cp932" for MS-Windows, which is very close to shift-jis. For Unix euc-jp, aliases "unix-jis"; and "ujis". I guess the MS-Windows...
347 Bram Moolenaar
bram@... Send Email
Feb 15, 2001
9:10 pm
... I have included the changes to escape a CSI. Perhaps there is some other character that needs to be escaped, or there is still a CSI that isn't escaped ...
348 Takuhiro Nishioka
vim-multibyte-egroups... Send Email
Feb 16, 2001
12:01 am
Hello, ... [...] ... [...] ... This patch fixed the both of the problem. Now, I can input 1 Japanese character correctly, and I can input 3 ascii character...
349 Takuhiro Nishioka
vim-multibyte-egroups... Send Email
Feb 16, 2001
12:07 am
Hello, ... I think you mean "cp936" here. I don't know. If the file created on Chinese MS-Windows is totally displayed corrupt on UNIX environment, it will...
350 Takuhiro Nishioka
vim-multibyte-egroups... Send Email
Feb 16, 2001
3:11 am
Hello, ... I can test this if someone could send me some chinese text created on MS-Windows. If someone kindly send me text, please be careful charset is not...
351 Bram Moolenaar
bram@... Send Email
Mar 5, 2001
2:07 pm
In Vim 6.0w the ":lmap" or language maps are used in Insert mode and other places where text is typed. For example when entering a search string. For the...
352 Nam SungHyun
vim-multibyte-egroups... Send Email
Mar 6, 2001
1:03 am
... You mean 'xim_set_focus()&#39; in multibyte.c? XIM is enabled in Insert mode and disabled in Normal mode. But, to allow 'f' or 'F' (and 't' 'T' ...) with...
353 Bram Moolenaar
bram@... Send Email
Mar 6, 2001
12:05 pm
... I only see xim_set_focus() being called when the GUI window obtains keyboard focus or when it looses keyboard focus. I don't see it being called when Vim ...
354 Nam SungHyun
vim-multibyte-egroups... Send Email
Mar 7, 2001
6:08 am
... xim_set_preedit() calls xim_set_focus() also. and xim_set_preedit() is called when VIM update cursor. check gui_update_cursor() in gui.c I meant, to allow...
355 Chong-Dae Park
vim-multibyte-egroups... Send Email
Mar 7, 2001
6:21 am
... How about to make it an vim run-time option (such as "always_connect_xim";) or compile-time directive(XIM_HACK?)? -- Chong-Dae Park -- The Ultimate Question...
356 Bram Moolenaar
bram@... Send Email
Mar 7, 2001
2:42 pm
... I can see gui_update_cursor() calling xim_set_preedit(). But it then calls xim_set_focus(TRUE), thus always enabling the XIM, unless in Normal mode and ...
357 Nam SungHyun
vim-multibyte-egroups... Send Email
Mar 8, 2001
3:15 am
... Windows and Unix is different. I have no knowledge (especially Windows). Next is just my experience. Windows: First of all, VIM always connect to IME. ...
358 Nam SungHyun
vim-multibyte-egroups... Send Email
Mar 8, 2001
6:29 am
... I made a mistake. Correct above line to: While input multibyte, it acts like Root, but somewhat ... namsh...
359 Bram Moolenaar
bram@... Send Email
Mar 8, 2001
11:21 am
... OK, so for English mode the IME is still used. ... [...] ... When the XIM is disabled, this means you can type English, right? Thus isn't switching the...
360 Nam SungHyun
vim-multibyte-egroups... Send Email
Mar 8, 2001
11:29 am
... When the XIM is disabled, VIM got a character from the X(?). When the XIM is enabled, user can select language mode. And XIM handle user input and send a...
361 Bram Moolenaar
bram@... Send Email
Mar 8, 2001
11:54 am
... Let's use an example: You are inserting Korean characters, thus XIM is set to your language mode. Then you hit <Esc> and you want to type some Normal mode...
362 Nam SungHyun
vim-multibyte-egroups... Send Email
Mar 8, 2001
12:01 pm
... Yes. Terminal+xim+vim user should do that. ... So, you will apply my patch (at least edit.c patch), right? :) And then, gvim user has a benefit than...
363 Chong-Dae Park
vim-multibyte-egroups... Send Email
Mar 8, 2001
12:10 pm
... Yes. You are right. But... Many programmers are also feel that this is stupid. And there is a hack. If a user types <ESC>, XIM changes mode to English ...
364 Bram Moolenaar
bram@... Send Email
Mar 8, 2001
2:44 pm
... Yes, I will now include the switching of XIM on/off. I'll do that for Insert mode, entering a search pattern and for the argument of commands like "r" and...
365 Nam SungHyun
vim-multibyte-egroups... Send Email
Apr 2, 2001
7:46 am
Hello, If 'XXYYZZ&#39; is multibyte, I get 'XXYY ' by '^VeyP&#39;. I get whole word by 'yeP'. regards, namsh...
366 Bram Moolenaar
bram@... Send Email
Apr 2, 2001
8:28 am
... I don't see this with utf-8 or euc-jp text. Any settings that matter? Especially the 'selection&#39; option. -- An easy way to determine if you have enough...
367 Nam SungHyun
vim-multibyte-egroups... Send Email
Apr 2, 2001
8:42 am
... selection=inclusive Now, I see it's a bug of 'virtualedit=block'. If I commented out 'set virtualedit=block', the problem gone. regards, namsh...
368 Bram Moolenaar
bram@... Send Email
Apr 2, 2001
9:13 am
... Ah, now I can reproduce it. Another one for the todo list... -- Our job was to build a computer information system for the branch banks. We were the...
369 David Harrison Jr.
vim-multibyte-egroups... Send Email
Apr 6, 2001
6:55 pm
Is this group even used? I would have expected a flurry of activity during the Vim 6.0 development. Where is everyone? David Jr....
370 Bram Moolenaar
bram@... Send Email
Apr 6, 2001
9:10 pm
... Not much, apparently. ... Perhaps we should promote this group in a few places? -- hundred-and-one symptoms of being an internet addict: 66. You create a...
371 Stephan Hegel
vim-multibyte-egroups... Send Email
Apr 7, 2001
7:28 am
Hi all, I am using rxvt-2.7.2 (in GB encodings with switch -km gb) with vim-6.0z. For input I use xcin-2.5.2. Encoding in vim is set to "chinese". When I try...
372 Bram Moolenaar
bram@... Send Email
Apr 7, 2001
10:24 am
... If you set 'encoding&#39; to "chinese" this will be aliased to "euc-cn". ... Vim is not supposed to change characters. Unless you have 'termencoding&#39; set, in...
Messages 343 - 372 of 2762   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help