| /vim-8.2.3635/runtime/keymap/ |
| H A D | serbian.vim | 1 let encoding = &enc variable 2 if encoding == 'latin1' 4 let encoding = 'iso-8859-2' variable 6 let encoding = 'cp1250' variable 10 if encoding == 'utf-8' 12 elseif encoding == 'cp1250' 14 elseif encoding == 'cp1251' 16 elseif encoding == 'iso-8859-2'
|
| H A D | polish-slash.vim | 10 let encoding = &enc variable 11 if encoding == 'latin1' 13 let encoding = 'iso-8859-2' variable 15 let encoding = 'cp1250' variable 19 if encoding == 'utf-8' 21 elseif encoding == 'cp1250' 23 elseif encoding == 'iso-8859-2'
|
| H A D | hebrewp.vim | 1 let encoding = &enc variable 2 if encoding == 'latin1' 4 let encoding = 'iso-8859-8' variable 6 let encoding = 'cp1255' variable 10 if encoding == 'utf-8' 12 elseif encoding == 'cp1255'
|
| H A D | slovak.vim | 1 let encoding = &enc variable 2 if encoding == 'latin1' 4 let encoding = 'iso-8859-2' variable 6 let encoding = 'cp1250' variable 10 if encoding == 'utf-8' 12 elseif encoding == 'cp1250'
|
| H A D | hebrew.vim | 1 let encoding = &enc variable 2 if encoding == 'latin1' 4 let encoding = 'iso-8859-8' variable 6 let encoding = 'cp1255' variable 10 if encoding == 'utf-8' 12 elseif encoding == 'cp1255'
|
| H A D | croatian.vim | 1 let s:encoding = &enc 2 if s:encoding == 'latin1' 4 let s:encoding = 'iso-8859-2' 6 let s:encoding = 'cp1250' 10 if s:encoding == 'utf-8' 12 elseif s:encoding == 'cp1250'
|
| H A D | README.txt | 7 {language}[-{layout}][_{encoding}].vim 15 {encoding} Optional: character encoding for which this keymap works. 16 When omitted the "normal" encoding for the language is 18 Use the value the 'encoding' option: lower case only, use '-'
|
| H A D | persian.vim | 1 let encoding = &enc variable 2 if encoding == '' 3 let encoding = 'utf-8' variable 6 if encoding == 'utf-8'
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | usr_45.txt | 14 |45.3| Using another encoding 138 *45.3* Using another encoding 168 :set encoding=utf-8 171 The 'encoding' option tells Vim the encoding of the characters that you use. 200 :let &termencoding = &encoding 201 :set encoding=utf-8 231 :let &termencoding = &encoding 232 :set encoding=utf-8 262 encoding internally, thus the 16-bit encoding must be converted, since there 383 keymap/{name}_{encoding}.vim ~ [all …]
|
| H A D | mbyte.txt | 74 :set encoding=utf-8 83 You can edit files in another encoding than what 'encoding' is set to. Vim 247 encoding was set wrong. 249 *encoding-names* 270 Supported 'encoding' values are: *encoding-values* 382 :set encoding=utf-8 430 'encoding'. 470 When reading and writing files in an encoding different from 'encoding', 502 'encoding' to 'termencoding'. If the encoding supported by the terminal 1315 Unicode encoding: [all …]
|
| H A D | print.txt | 12 4. PostScript Printing Encoding |postscript-print-encoding| 113 'encoding' (if it is set an 8-bit encoding) to find the print character 114 encoding file. If Vim is unable to find a character encoding file then it 115 will use the "latin1" print character encoding file. 117 When 'encoding' is set to a multibyte encoding, Vim will try to convert 266 To set up the correct encoding and character set for printing some 427 to the 8-bit encoding. 430 4. Custom 8-bit Print Character Encodings *postscript-print-encoding* 438 locate and use your print character encoding. 459 print character encoding Vim will use.] [all …]
|
| H A D | arabic.txt | 18 :set encoding=utf-8 121 To enable the correct Arabic encoding the following command needs 124 :set encoding=utf-8 128 encoding=utf-8' to your .vimrc file. 134 Arabic requires UTF-8, do ':set encoding=utf-8' 270 The character/letter encoding used in Vim is the standard UTF-8. 271 It is widely discouraged that any other encoding be used or even 274 Note: UTF-8 is an all encompassing encoding and as such is 275 the only supported (and encouraged) encoding with
|
| H A D | spell.txt | 284 'encoding' 'spelllang' 400 'encoding'. 527 {encoding} is the value of the 'encoding' option. 678 value is 'encoding', since every encoding has its own spell file. With two 723 /encoding=utf-8 ~ 724 - A line starting with "/encoding=", before any word, specifies the encoding 726 to setup conversion from the specified encoding to 'encoding'. Thus you can 750 /encoding=latin1 encoding of the file 879 The encoding should be specified before anything where the encoding matters. 885 The encoding can be different from the value of the 'encoding' option at the [all …]
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | tohtml.vim | 322 let s:settings.encoding = 'UTF-8' 355 if s:settings.encoding != "" 356 let xml_line = "<?xml version=\"1.0\" encoding=\"" . s:settings.encoding . "\"?>" 779 echomsg "TOhtml: file encoding for" 794 let user_settings.encoding = '' " trigger detection using &encoding 798 " else from 'encoding' if possible 805 if user_settings.encoding == '' 807 let user_settings.encoding = 'UTF-8' 898 let a:settings.encoding = "" 901 if a:settings.encoding != "" [all …]
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_spellfile.vim | 197 set encoding=utf-8 404 set encoding=utf-8 413 set encoding=utf-8 422 set encoding=utf-8 431 set encoding=utf-8 440 set encoding=utf-8 449 set encoding=utf-8 458 set encoding=utf-8 467 set encoding=utf-8 485 /encoding=latin1 [all …]
|
| H A D | test_termencoding.vim | 1 " Test for setting 'encoding' to something else than the terminal uses, then 14 " This Vim is running with 'encoding' "utf-8", the Vim in the terminal is 15 " running with 'encoding' "euc-jp". We need to make sure the text is in the 16 " right encoding, this is a bit tricky. 24 \ 'set encoding=euc-jp',
|
| H A D | test_utf8.vim | 101 " When 'encoding' is not multi-byte can still get utf-8 string. 102 " But we need to create the utf-8 string while 'encoding' is utf-8. 106 let save_encoding = &encoding 107 set encoding=latin1 113 " Try converting a list to a string in latin-1 encoding 116 let &encoding = save_encoding
|
| H A D | test_charsearch.vim | 57 " Test for character search failure in latin1 encoding 60 let save_enc = &encoding 61 set encoding=latin1 67 let &encoding = save_enc
|
| H A D | test_writefile.vim | 510 let save_encoding = &encoding 512 set encoding=latin1 fileencodings& 525 set encoding=utf-8 538 set encoding=cp1251 551 set encoding=cp866 563 " read three 'fileencoding's with utf-8 'encoding' 564 set encoding=utf-8 fencs=utf-8,cp1251 580 set encoding=utf-8 fencs=utf-8,cp1251 595 " read three 'fileencoding's with cp866 'encoding' 596 set encoding=cp866 fencs=utf-8,cp1251 [all …]
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | sqr.vim | 56 syn keyword sqrReserved {sqr-encoding} $sqr-encoding-console 57 syn keyword sqrReserved {sqr-encoding-console} 58 syn keyword sqrReserved $sqr-encoding-database 59 syn keyword sqrReserved {sqr-encoding-database} 60 syn keyword sqrReserved $sqr-encoding-file-input 61 syn keyword sqrReserved {sqr-encoding-file-input} 62 syn keyword sqrReserved $sqr-encoding-file-output 63 syn keyword sqrReserved {sqr-encoding-file-output} 64 syn keyword sqrReserved $sqr-encoding-report-input 65 syn keyword sqrReserved {sqr-encoding-report-input} [all …]
|
| /vim-8.2.3635/src/libvterm/ |
| H A D | Makefile | 34 TBLFILES=$(sort $(wildcard src/encoding/*.tbl)) 66 src/encoding/%.inc: src/encoding/%.tbl 72 src/encoding.lo: $(INCFILES) 120 mkdir __distdir/src/encoding 121 cp src/encoding/*.inc __distdir/src/encoding
|
| /vim-8.2.3635/src/libvterm/t/ |
| H A D | 17state_mouse.test | 120 !DECRQM on standard encoding mode 128 !UTF-8 extended encoding mode 136 !DECRQM on UTF-8 extended encoding mode 144 !SGR extended encoding mode 151 !DECRQM on SGR extended encoding mode 159 !rxvt extended encoding mode 166 !DECRQM on rxvt extended encoding mode
|
| H A D | harness.c | 87 static VTermEncodingInstance encoding; variable 670 encoding.enc = vterm_lookup_encoding(ENC_UTF8, 'u'); in main() 671 if(encoding.enc->init) in main() 672 (*encoding.enc->init)(encoding.enc, encoding.data); in main() 683 (*encoding.enc->decode)(encoding.enc, encoding.data, in main()
|
| /vim-8.2.3635/runtime/tutor/ |
| H A D | README.txt | 27 language code). The encoding of tutor.xx might be latin1 or other traditional 28 encoding. If you don't need a translation with such traditional encoding, 30 If you need another encoding, you can also prepare a file named tutor.xx.enc 31 (replace enc with the actual encoding name). You might also need to adjust the
|
| /vim-8.2.3635/src/po/ |
| H A D | README.txt | 9 messages from one encoding to another. This requires that it was compiled 10 with HAVE_ICONV. The result is that the messages may be in any encoding 12 encoding. 137 When using gettext which doesn't support iconv, the encoding of the .mo file 138 must match your active encoding. For that you must convert and change 139 encoding of *.po file in advance of generating the *.mo file. For example, to 140 convert ja.po to EUC-JP (supposed as your system encoding): 142 (1) Convert the file encoding:
|