Search the web
Sign In
New User? Sign Up
vim-multibyte · Vim (Vi IMproved) text editor special language list
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2542 - 2571 of 2636   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2542
Hi All,   I'm using TeXShop 2.18 (which appears to be the latest version yet the release date claims it came out 9/6/2008, later than I installed it). I'm...
Joseph Retzer
joe_retzer@...
Send Email
Nov 7, 2008
4:44 pm
2543
I'd like to use a unicode font that includes both simplified Chinese and latin. The only font that I have found that does this in gvim on Windows is NSimSun....
zod
zodjones@...
Send Email
Nov 13, 2008
8:20 am
2544
I use MingLiU which displays both traditional and simplified Chinese, as well as Latin alphabets. The Latin display is not the prettiest but decent :-) ... ...
Mansing
msingtse@...
Send Email
Nov 13, 2008
8:41 am
2545
Don't waste time trying MingLiU... I just find out that the NSimSun which zod mentioned has better looking Latin scripts. That is, the MingLiU which I think...
Mansing
msingtse@...
Send Email
Nov 13, 2008
8:48 am
2546
... Ifound once a font which had glyphs for all Unicode codepoints (in the BMP, U+0020 to U+FFFD, which admittedly is not _all_ Unicode) but it was ugly (I...
Tony Mechelynck
antoine.mechelynck@...
Send Email
Nov 13, 2008
9:33 pm
2547
For the record, these are the fonts that I have found that correctly display both simplified Chinese and latin script in gvim: NSimSun (latin looks awful) ...
zod
zodjones@...
Send Email
Nov 14, 2008
3:53 pm
2548
... I was going to suggest Deja Vu Sans Mono because I thought it covered all of Unicode, but I just learned that it doesn't cover Chinese: ...
George V. Reilly
george@...
Send Email
Nov 14, 2008
5:26 pm
2549
G Sent via BlackBerry® from Telstra ... From: "George V. Reilly" <george@...> Date: Fri, 14 Nov 2008 09:25:37 To: <vim_multibyte@googlegroups.com> ...
truman@...
Send Email
Nov 14, 2008
6:11 pm
2550
How do you match the BOM in a file you are editing in vim? I've tried the following: /\xfeff /\o177377 I know you can just set nobomb to get rid of it, but I'm...
zod
zodjones@...
Send Email
Nov 19, 2008
5:34 pm
2551
... The BOM doesn't fall outside the Unicode range, it is not considered part of the text, so when reading a file in ucs-bom mode, Vim strips the BOM and sets...
Tony Mechelynck
antoine.mechelynck@...
Send Email
Nov 20, 2008
3:13 am
2552
Thanks, Tony. That was driving me crazy. --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_multibyte" maillist. For...
zod
zodjones@...
Send Email
Nov 20, 2008
4:44 am
2553
[Tony Mechelynck] ... Just for the record (and to be pedantic), while the BOM is a Unicode character, the reversed BOM is not part of Unicode. This is more a...
François Pinard
pinard@...
Send Email
Nov 20, 2008
12:05 pm
2554
... To be still more pedantic, U+FFFE is part of the Unicode range, where it is listed as "Not a character", i.e., it is one of the "forbidden" codepoints...
Tony Mechelynck
antoine.mechelynck@...
Send Email
Nov 21, 2008
7:16 am
2555
... That is to be expected. When you change 'encoding' all text currently in memory that contains non-ASCII characters may become invalid. That includes file...
Bram Moolenaar
Bram@...
Send Email
Dec 8, 2008
6:41 pm
2556
On vim/gvim 7.1 and 7.2 for MS Windows I noticed that there are problems with editing files when the file path contains non-ASCII characters and you change the...
rpr
rpr.nospam@...
Send Email
Dec 8, 2008
9:08 pm
2557
... Yes, and at http://vim.wikia.org/Working_with_Unicode you'll find a tip which I put together when I was still on Windows (Win98 I think), and the current...
Tony Mechelynck
antoine.mechelynck@...
Send Email
Dec 9, 2008
1:00 am
2558
Rats! I tag the following mode line to all of my Chinese text files, to mark their encoding and font set etc.: <!-- vim: set fo+=mM gfn=MingLiU\:h12...
Mansing
msingtse@...
Send Email
Dec 9, 2008
6:09 am
2559
... So, what is the right way to write text files with utf-8 encoding so that they may be automatically editable on a "multi-byte" enabled system which do not...
rpr
rpr.nospam@...
Send Email
Dec 9, 2008
9:54 am
2560
... [...] ... [...] There isn't. If you know that you will (even only occasionally) be editing files which can contain any Unicode codepoints, you should start...
Tony Mechelynck
antoine.mechelynck@...
Send Email
Dec 9, 2008
2:35 pm
2561
Le Tue, 9 Dec 2008 01:54:28 -0800 (PST), rpr a écrit dans le message ... File encoding is set with 'fileencoding' option, not 'encoding'. You can add a 'fenc'...
Patrick Texier
p.texier@...
Send Email
Dec 9, 2008
5:54 pm
2562
... ...and if it detects the wrong value (let's say Vim detects latin1 on an iso-8859-2 file) you can reload the file with an override, as in ... See also...
Tony Mechelynck
antoine.mechelynck@...
Send Email
Dec 9, 2008
6:08 pm
2563
I tried changing "enc=" to "fenc=" in my mode line: <!-- vim: set fo+=mM gfn=MingLiU\:h12 fenc=utf-8: --> but my Chinese text doesn't show up correctly (as if...
Mansing
msingtse@...
Send Email
Dec 10, 2008
12:46 am
2564
... not on the modeline but as an ex-command. You need a Vim version with +multi_byte compiled-in and your 'encoding' MUST already be set (preferably somewhere...
Tony Mechelynck
antoine.mechelynck@...
Send Email
Dec 10, 2008
1:22 am
2565
They calculate col number counting bytes, not chars. Also :python vim.current.line and :python vim.current.buffer holds data in strings encoded in utf-8, but...
Angri
general@...
Send Email
Dec 13, 2008
9:48 am
2566
The message cannot be represented in 7-bit ASCII encoding and has been sent as a binary attachment. --~--~---------~--~----~------------~-------~--~----~ You...
bram@...
Send Email
Dec 18, 2008
9:19 am
2567
I should take a little longer checking, but in view of the potential for damage I'm sending a preliminary opinion: A message has just been sent to the...
John Beckett
johnb.beckett@...
Send Email
Dec 18, 2008
10:26 am
2568
Follow up: I just deleted the message from the archive at http://groups.google.com/group/vim_multibyte John ...
JohnBeckett
johnb.beckett@...
Send Email
Dec 18, 2008
10:30 am
2569
... Note that unlike Bram's usual mailings, this one has a naked email address as the from-line. I moved it aside to a "Spam - or not?" mailbox "folder"...
Tony Mechelynck
antoine.mechelynck@...
Send Email
Dec 18, 2008
11:04 pm
2570
On 18/12/08 17:22, Christian MICHON wrote: [...] ... Right. ... Not necessarily: Steve Hall's Vim distributions ...
Tony Mechelynck
antoine.mechelynck@...
Send Email
Dec 18, 2008
11:24 pm
2571
Hello Vim users, The usual Vim desktop calendar is now available for download and printing: English - A4 : http://www.moolenaar.net/2009_en_a4.pdf English -...
Bram Moolenaar
Bram@...
Send Email
Dec 21, 2008
4:18 pm
Messages 2542 - 2571 of 2636   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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