Shawn Y.H. Kim wrote:
> In response to the following comment made by Bram on Aug 2, 2007:
> (can be viewed at
> http://groups.google.com/group/vim_dev/browse_thread/thread/3b73a504c77ba803/)
>
> > I hesitate removing the Hangul support without knowing for sure that it
> > is not needed. Browsing through the messages I do see remarks that it
> > might still be useful to a few people.
> >
> > Perhaps the Hangul support can be changed to also work for UTF-8?
>
> I made (finally) a patch that enables hangul-input module to work for
> UTF-8.
Thanks. I'm glad to finally see this implemented.
It still needs some work though.
> Finally, hg diff:
> ... It is too long. But I cannot find a way to attach a file, so, here
> goes the diff:
Please do send this as an attachment. Long lines got wrapped, making it
impossible to apply.
The change to getchar.c should not be there. Perhaps you are not
encoding the strings that go into the input buffer correctly? A CSI
should be put there as three characters: CSI KS_EXTRA KE_CSI.
I guess fix_input_buffer() can be used in push_raw_key().
It should be possible to keep hangul_width[] inside hangulin.c. Instead
of:
(void)gui_outstr_nowrap(composing_hangul_buffer, hangul_width[enc_utf8],
Use something like:
(void)hangul_outstr_composing();
The code for calling push_raw_key() can also be put in one place.
The call to my_iconv_open() must be inside a check for USE_ICONV.
Perhaps when this is not available all of the patch won't work?
Then you need to add a lot more #ifdefs.
--
hundred-and-one symptoms of being an internet addict:
82. AT&T names you Customer of the Month for the third consecutive time.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php