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 395 - 424 of 2762   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
395 Nam SungHyun
vim-multibyte-egroups... Send Email
May 2, 2001
10:23 am
Hello, This patch is for OnTheSpot method (only supported by GTK+ GUI). I stole the code from gui_w32.c. If you want to change the cursor color while...
396 vim-multibyte-egroups... Send Email May 2, 2001
11:44 am
Hi, Vim-multibyte On regexp of Vim, multi-byte is not treated as \"ri_word\". I made small patch. ... *************** *** 580,586 **** # define ri_digit(c) (c...
397 Bram Moolenaar
bram@... Send Email
May 2, 2001
1:39 pm
... Looks good to me. I'll include it and separate the generic code from the system-specific code. Thanks! -- Nothing is fool-proof to a sufficiently...
398 Bram Moolenaar
bram@... Send Email
May 2, 2001
1:40 pm
... If you look in the on-line help for the \w item in patterns, it is defined as matching with [0-9A-Za-z_]. Thus it should not match with multi-byte ...
399 Muraoka Taro
vim-multibyte-egroups... Send Email
May 3, 2001
3:16 am
There are encodings do not depend on platform. Ex. CP932, shift-jis, euc-jp and so on. CP932 and shift-jis are close each other, but surely different. So we...
400 vim-multibyte-egroups... Send Email May 3, 2001
8:14 am
character? Hmm, I understood. Please look to the 290th line of \"menu.vim\". This statement can\'t find filename used multi-byte. It is not the problem of only...
401 Bram Moolenaar
bram@... Send Email
May 3, 2001
9:50 am
... I had wondered about these aliases for a while. The similar encodings can be used to get a better-than-nothing display, but will cause trouble when trying...
402 Muraoka Taro
vim-multibyte-egroups... Send Email
May 3, 2001
11:42 am
... CP950 is extended version of Big5 by Microsoft. Microsoft have added some codes to Big5 and make it to call CP950. CP950 has some additionaly codes....
403 Bram Moolenaar
bram@... Send Email
May 3, 2001
1:03 pm
... Right. Thus conversion between these two encodings don't make much sense, right? On the other hand, when you have a cp950 file and 'fileencoding&#39; is set...
404 Bram Moolenaar
bram@... Send Email
May 11, 2001
2:59 pm
Hello Vimmers, This is a BETA version of Vim 5.8. It includes all patches that have been sent out for 5.7, plus about 70 new syntax files. The main reason for...
405 vim-multibyte-egroups... Send Email May 14, 2001
3:28 am
Hi, all I make patch for printer. (include fix of win32 font setting) ... *************** ... */ while(*p) { + #ifdef FEAT_MBYTE + int mblen; + mblen =...
406 Bram Moolenaar
bram@... Send Email
May 14, 2001
9:18 am
... Thanks. I'll merge it with the other patch for multi-byte printing. -- hundred-and-one symptoms of being an internet addict: 258. When you want to see...
407 vim-multibyte-egroups... Send Email May 15, 2001
7:18 am
Hello, This is fix of slash_adjust for multibyte. ... *************** ... { if (*p == psepcN) *p = psepc; + #ifdef FEAT_MBYTE + if (has_mbyte) + p +=...
408 vim-multibyte-egroups... Send Email May 15, 2001
7:18 am
Hello, This is fix of slash_adjust for multibyte. ... *************** ... { if (*p == psepcN) *p = psepc; + #ifdef FEAT_MBYTE + if (has_mbyte) + p +=...
409 Bram Moolenaar
bram@... Send Email
May 15, 2001
10:18 am
... Thanks, I'll include it. I'll also apply it to the other implementations of slash_adjust(). -- Error:015 - Unable to exit Windows. Try the door. ///...
410 vim-multibyte-egroups... Send Email May 16, 2001
3:06 am
Hello, vim-multibyte. Win32\&#39;s gui_mch_draw_string make garbage. Doesn\&#39;t your vim appear garbage when redraw intro? This reason is that HanExtTextOut draw few...
411 vim-multibyte-egroups... Send Email May 17, 2001
1:42 am
Hello I made patch for clip selection. ... *************** ... static int can_update_cursor = TRUE; /* can display the cursor */ + #ifdef FEAT_MBYTE + static...
412 vim-multibyte-egroups... Send Email May 17, 2001
6:51 am
... Sorry, I found program of sent patch. Bellow is correct. ... *************** ... static int can_update_cursor = TRUE; /* can display the cursor */ + #ifdef...
413 Bram Moolenaar
bram@... Send Email
May 23, 2001
1:27 pm
Hello Vimmer, You might be interested in this article, which appeared in the June 2001 issue of Linux Journal. It is about the relation between software in...
414 vim-multibyte-egroups... Send Email May 24, 2001
1:27 am
Hi Bram I traced the cause about the problem of this subject. This is only for multi-byte. I tested Win32 and Linux-Gtk. Below is a patch....
415 vim-multibyte-egroups... Send Email May 24, 2001
1:29 am
... Sorry I forgot attachment. One more... ... *************** *** 4953,4970 **** int n; n = ScreenAttrs[off]; - if (col + 1 # ifdef FEAT_MBYTE ! +...
416 Yasuhiro Matsumoto
vim-multibyte-egroups... Send Email
May 28, 2001
2:23 am
Hello Bram and all, I made a patch for backslash problem. :-) When starting with command argument if filename included multibyte, E33 come out. It's made with...
417 Yasuhiro Matsumoto
vim-multibyte-egroups... Send Email
May 28, 2001
2:34 am
Sorry, I forgot attachment....
418 Yasuhiro Matsumoto
vim-multibyte-egroups... Send Email
May 28, 2001
2:40 am
Oh, my mailer is broken. Sorry I send it in mail-body. ... diff -cr src.org/fileio.c src/fileio.c ... *************** ... if (sfname != NULL) { for (p =...
419 Bram Moolenaar
bram@... Send Email
May 28, 2001
8:59 am
... Thanks. I'll include it. I think the changes are only needed for double-byte encodings, not for UTF-8. "if (enc_dbcs != 0" can be used instead of "if ...
420 Yasuhiro Matsumoto
vim-multibyte-egroups... Send Email
May 28, 2001
9:51 am
... Yes, a "++size" is missing. X-( Thanks...
421 Bram Moolenaar
bram@... Send Email
May 31, 2001
3:44 pm
Announcing: Vim (Vi IMproved) version 5.8 Author: Bram Moolenaar et al. Announcement ... This is a minor release of Vim. Since version 5.7 has been released...
422 Bram Moolenaar
bram@... Send Email
Jun 4, 2001
8:44 pm
Short version: New site. http://vim.sf.net. Enjoy! Long version: Inspired by www.php.net, Scott Johnston and Jonathan Morace have written a portal for Vim...
423 Yasuhiro Matsumoto
vim-multibyte-egroups... Send Email
Jun 5, 2001
7:49 am
Hi , all when the word is deleted with ctrl_w in command line, the first character of same class's word is not deleted. below is a small patch. ... ...
424 Yasuhiro Matsumoto
vim-multibyte-egroups... Send Email
Jun 19, 2001
3:20 am
Hi vim-multibyte and bram. a function of mb_strnicmp is not one of mbsnicmp. "eval.c" use negative value of STRICMP. ... explore.vim s:SortR s:StrCmp a:line1 <...
Messages 395 - 424 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