| /vim-8.2.3635/src/libvterm/src/ |
| H A D | unicode.c | 369 if ((int)ucs < table[0].first || (int)ucs > table[max].last) in bisearch() 426 if (ucs == 0) in mk_wcwidth() 428 if (ucs < 32 || (ucs >= 0x7f && ucs < 0xa0)) in mk_wcwidth() 441 ucs == 0x2329 || ucs == 0x232a || in mk_wcwidth() 442 (ucs >= 0x2e80 && ucs <= 0xa4cf && in mk_wcwidth() 444 (ucs >= 0xac00 && ucs <= 0xd7a3) || /* Hangul Syllables */ in mk_wcwidth() 446 (ucs >= 0xfe10 && ucs <= 0xfe19) || /* Vertical forms */ in mk_wcwidth() 448 (ucs >= 0xff00 && ucs <= 0xff60) || /* Fullwidth Forms */ in mk_wcwidth() 449 (ucs >= 0xffe0 && ucs <= 0xffe6) || in mk_wcwidth() 450 (ucs >= 0x20000 && ucs <= 0x2fffd) || in mk_wcwidth() [all …]
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test27.in | 12 :/^ucs-2$/+1w! Xtest3 62 :" --- Check ucs-2 69 :set fenc=ucs-2 79 :set fenc=ucs-2le 82 :" --- Check ucs-4 89 :set fenc=ucs-4 99 :set fenc=ucs-4le 123 ucs-2 125 ucs-2le 127 ucs-4 [all …]
|
| H A D | test27.ok | 20 ucs-2 25 ucs-2le 28 fileencoding=ucs-4 30 ucs-4 33 fileencoding=ucs-4le 35 ucs-4le
|
| H A D | test_writefile.vim | 679 " Check ucs-2 BOM 685 call assert_equal('ucs-2', getline(1)) 689 set fenc=ucs-2 694 " Check ucs-2le BOM 702 call assert_equal('ucs-2le', getline(1)) 706 set fenc=ucs-2le 711 " Check ucs-4 BOM 717 call assert_equal('ucs-4', getline(1)) 721 set fenc=ucs-4 725 " Check ucs-4le BOM [all …]
|
| H A D | test_options.vim | 263 call assert_equal('"set fileencodings=ucs-bom,utf-8,default,latin1', @:) 266 call assert_equal('"set fileencodings:ucs-bom,utf-8,default,latin1', @:) 1138 call assert_equal('ucs-bom,utf-8,default,latin1', &fencs) 1141 call assert_equal('ucs-bom,utf-8,default,latin1', &fencs) 1144 call assert_equal('ucs-bom,utf-8,default,latin1', &fencs)
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | tohtml.vim | 75 \ 'ucs-2' : 'UTF-8', 76 \ 'ucs-2le' : 'UTF-8', 79 \ 'ucs-4' : 'UTF-8', 80 \ 'ucs-4le' : 'UTF-8', 276 \ 'iso-10646-ucs-2' : 'ucs-2', 277 \ 'csunicode' : 'ucs-2', 281 \ 'utf-32' : 'ucs-4', 282 \ 'utf-32be' : 'ucs-4', 283 \ 'utf-32le' : 'ucs-4le', 284 \ 'iso-10646-ucs-4' : 'ucs-4', [all …]
|
| H A D | netrw.vim | 559 if has("gui_running") && (&enc == 'utf-8' || &enc == 'utf-16' || &enc == 'ucs-4')
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | mbyte.txt | 315 u ucs-2le like ucs-2, little endian 319 u ucs-4le like ucs-4, little endian 342 u unicode same as ucs-2 344 u ucs-2be same as ucs-2 (big endian) 345 u ucs-4be same as ucs-4 (big endian) 346 u utf-32 same as ucs-4 347 u utf-32le same as ucs-4le 355 ucs-2 11 22 1122 356 ucs-2le 22 11 1122 357 ucs-4 11 22 33 44 11223344 [all …]
|
| H A D | usr_45.txt | 180 http://www.cl.cam.ac.uk/~mgk25/download/ucs-fonts.tar.gz ~ 267 value is: "ucs-bom,utf-8,latin1". This means that Vim checks the file to see 270 ucs-bom File must start with a Byte Order Mark (BOM). This 293 :set fileencodings=ucs-bom,utf-8,sjis
|
| H A D | print.txt | 238 euc-cn gbk ucs-2 utf-8 ~ 246 euc-tw big5 ucs-2 utf-8 ~ 252 euc-jp sjis ucs-2 utf-8 ~ 260 euc-kr cp949 ucs-2 utf-8 ~
|
| H A D | repeat.txt | 344 Don't use "ucs-2" or "ucs-4", scripts cannot be in
|
| H A D | options.txt | 1307 - 'fileencoding' is "utf-8", "ucs-2", "ucs-4" or one of the little/big 1313 When Vim reads a file and 'fileencodings' starts with "ucs-bom", a 1531 Conversion between "latin1", "unicode", "ucs-2", "ucs-4" and "utf-8" 2936 When "unicode", "ucs-2" or "ucs-4" is used, Vim internally uses utf-8. 3131 'fileencodings' 'fencs' string (default: "ucs-bom", 3132 "ucs-bom,utf-8,default,latin1" when 3150 "ucs-bom", which requires the BOM to be present). If you prefer 3164 The special value "ucs-bom" can be used to check for a Unicode BOM 3180 utf-8,ucs-bom,latin1 BOM won't be recognized in an utf-8
|
| H A D | todo.txt | 1718 Editing an ascii file as ucs-2 or ucs-4 causes display errors. 4115 (www.cl.cam.ac.uk/~mgk25/ucs/langinfo.c)
|
| H A D | version7.txt | 6330 Solution: Add aliases for utf-32, it's the same as ucs-4. 7599 Problem: When detecting a little endian BOM "ucs-2le" is used, but the text 7601 Solution: Default to "utf-16le", it also works for "ucs-2le". (Jia Yanwei)
|
| H A D | syntax.txt | 768 :let g:html_charset_override = {'ucs-4': 'UTF-32', 'utf-16': 'UTF-16'}
|
| H A D | version6.txt | 652 used with "ucs-bom" in 'fileencodings' to automatically detect a Unicode 654 2000), which uses ucs-2le files with a BOM (e.g., when exporting the
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | netrw.vim | 22 if has("gui_running") && (&enc == 'utf-8' || &enc == 'utf-16' || &enc == 'ucs-4')
|
| /vim-8.2.3635/src/po/ |
| H A D | zh_TW.UTF-8.po | 39 # set fileencodings=ucs-bom,utf-8,japan,taiwan,prc
|
| H A D | zh_TW.po | 32 # set fileencodings=ucs-bom,utf-8,japan,taiwan,prc
|