... It works fine for me. I'm using xterm 157, compiled with wide characters. Both gvim and xterm are using utf-8 encoding. -- ARTHUR: Then who is your...
499
Ričardas Če...
rch@...
Sep 1, 2001 6:38 pm
... Hmm, maybe it is GTK bug. I have found now that the same happens for me to some other GTK programms as well. -- ☻ Ričardas Čepas ☺ ~~ ~...
500
Bram Moolenaar
Bram@...
Sep 1, 2001 7:51 pm
... I did try it with the GTK version. Thus it's unlikely GTK itself. I'm using GTK 1.2.10, if that matters. -- ARTHUR: You fight with the strength of many...
501
Bram Moolenaar
Bram@...
Sep 2, 2001 6:45 pm
An article appeared on the Linux Journal web site: "Vi IMproved--Vim and Happy Hacking Keyboard Lite 2" Written by Don Marti. Despite the title it's also a...
502
Bram Moolenaar
Bram@...
Sep 4, 2001 10:39 am
Announcing: Vim (Vi IMproved) version 6.0au BETA Author: Bram Moolenaar et al. Announcement ... This is a BETA test version of Vim. Vim 6.0 is a huge step...
503
Steven Mueller
diffusor@...
Sep 11, 2001 8:54 am
I'm using kinput2 for Japanese input into GTK gvim 6.0av on my debian-sid x86 system. When I start vim, imactivatekey is unset. However, I can still use...
504
Steven Mueller
diffusor@...
Sep 11, 2001 9:13 am
Apparently I was a bit too hasty... I now understand that imactivatekey does not control which key activates XIM, but rather makes vim aware of what key...
505
Bram Moolenaar
Bram@...
Sep 11, 2001 5:36 pm
... The 'imactivatekey' option tells Vim the key that your XIM is using. It's not for changing that key. ... This sounds like a bug. When you set 'iminsert39;...
506
Bram Moolenaar
Bram@...
Sep 13, 2001 9:32 pm
This is about Vim's charity, helping poor children in Uganda. NEWSLETTER Jackie Ammeter, the person that handles the administration of sponsored children in...
507
Bram Moolenaar
Bram@...
Sep 21, 2001 1:55 pm
Announcing: Vim (Vi IMproved) version 6.0ax BETA Author: Bram Moolenaar et al. Announcement ... This is a BETA test version of Vim. Vim 6.0 is a huge step...
508
Glenn F. Maynard
glenn@...
Sep 22, 2001 8:28 am
Well, this has been brought up before, but it's still not working, so I thought I'd bring it up again. :) First, the easy stuff: warnings. (No -Wall,...
509
Bram Moolenaar
Bram@...
Sep 22, 2001 11:03 am
... Looks like the header file that defines iconv() is wrong. Or at least not according to the standard. It's probably using "char **" instead of "const char...
510
Muraoka Taro
koron@...
Sep 22, 2001 11:44 am
I found one of problems. When.. ... input conversion is occured, but it failed always. Windows splits a multibyte character into each bytes, and pass to ...
511
Glenn F. Maynard
glenn@...
Sep 22, 2001 7:30 pm
... AFAIK, you're not supposed to get multibyte characters from the IME from WM_CHAR ... you should get them as a result of WM_IME_COMPOSITION. -- Glenn...
512
Glenn F. Maynard
glenn@...
Sep 22, 2001 7:43 pm
... Which makes it rather difficult to set up ... I don't know the widths of a font at a given point size (height), and don't know the exact way this setting...
513
Glenn F. Maynard
glenn@...
Sep 22, 2001 9:23 pm
Fonts: *anything* I put in guifont= in _gvimrc is being taken; it just happens that if it doesn't exist, it uses a font that happnes to look like "vga" in X. ...
514
Glenn F. Maynard
glenn@...
Sep 23, 2001 12:26 am
I put together a WM_IME_COMPOSITION handler; it works for Japanese input. Some quirks. You must use the *W wide versions of ImmGetCompositionString, or it'll...
515
Muraoka Taro
koron@...
Sep 23, 2001 1:32 am
... (snip) Your patch doesn't work for me. You postulate input encode and fileencoding must be UNICODE or UTF-8 on default, don't you? But I think that is...
516
Muraoka Taro
koron@...
Sep 23, 2001 1:36 am
... Sorry patch was lost. Something may be wrong in my mailer setting. ... Muraoka Taro <koron@...> ... *************** ... break; #ifdef...
517
Glenn F. Maynard
glenn@...
Sep 23, 2001 2:19 am
... Fileencoding doesn't matter; it's only used when reading and writing to disk. The input encoding shouldn't matter--AFAIK, the IME always sends UTF-16....
518
Muraoka Taro
koron@...
Sep 23, 2001 2:59 am
... I don't think so. As I have wroted, there are many files in "internal encoding" (as like cp932) already. So many of Japanese don't use UTF-8, "internal...
519
Glenn F. Maynard
glenn@...
Sep 23, 2001 3:04 am
... It's not a small change, and definitely not one for late-beta. The slowdown is probably negligible; the memory usage is more significant. (IIRC, SJIS is...
520
Glenn F. Maynard
glenn@...
Sep 23, 2001 4:13 am
... *sigh* Looking through the code, it looks like the code that does this for fileencoding isn't currently reusable. There's stuff there showing how to do it...
521
Muraoka Taro
koron@...
Sep 23, 2001 4:27 am
... Yes indeed. ... Did you have iconv.dll? We can get the source code at here: http://www.gnu.org/directory/libiconv.html I have a binary compiled with VC6,...
522
Glenn F. Maynard
glenn@...
Sep 23, 2001 5:55 am
Er, correction; I've been saying UTF-16 where I meant UCS-2.
On Sun, Sep 23, 2001 at 01:27:04PM +0900, Muraoka Taro wrote:
> > Anyhow, know how to set up a...
523
Muraoka Taro
koron@...
Sep 23, 2001 6:30 am
... Is your patch REVERSE? If you can, please make patch from original to your version. I'm confused what do I test. Indeed, when using...
524
Glenn F. Maynard
glenn@...
Sep 23, 2001 6:49 am
... Oops, sorry. ... None of this matters for other platforms, since this is only for the IME in Windows. We don't want to require iconv to support the IME. ...
525
Glenn F. Maynard
glenn@...
Sep 23, 2001 7:02 am
... The terminal problems were screen's fault. -- Glenn Maynard...
526
Muraoka Taro
koron@...
Sep 23, 2001 7:12 am
I didn't test all yet. But I noticed one thing. ... You use ImmGetCompositionStringW(). But ImmGetCompositionStringW() is only available for NT/2K, isn't it?....
527
Glenn F. Maynard
glenn@...
Sep 23, 2001 7:31 am
... This code is for the IME2000, which is in Win2K and up. We must use the wide version; the ANSI version dumps question marks. Pretty useless. This code...