| /vim-8.2.3635/src/testdir/ |
| H A D | test_fileformat.vim | 1 " Test for 'fileformat' 8 set fileformat& 9 if &fileformat == 'dos' 11 elseif &fileformat == 'unix' 86 set fileformat=unix 98 " try with 'fileformat' set to 'dos' 99 set fileformat=dos 112 set fileformat=mac 300 r ++fileformat=unix Xfile1 307 set fileformat& [all …]
|
| H A D | test77a.in | 23 :set fileformat=unix undolevels=-1 31 :set fileformat&
|
| H A D | test_file_size.vim | 17 set fileformat=unix undolevels=-1 30 set fileformat& undolevels&
|
| H A D | test_ga.vim | 36 " When using Mac fileformat, CR instead of NL is used for line termination 38 set fileformat=mac
|
| H A D | test_wordcount.vim | 6 set selection=inclusive fileformat=unix fileformats=unix 100 set selection& fileformat& fileformats&
|
| H A D | test_statusline.vim | 89 set fileformat=dos 91 set fileformat=mac 93 set fileformat=unix 95 set fileformat&
|
| H A D | test_fixeol.vim | 5 " use Unix fileformat for consistency
|
| H A D | Make_ming.mak | 95 # Copy the input files to dostmp, changing the fileformat to dos.
|
| H A D | Make_dos.mak | 83 # Copy the input files to dostmp, changing the fileformat to dos.
|
| H A D | gen_opt_test.vim | 95 \ 'fileformat': [['', 'dos', 'unix'], ['xxx']],
|
| H A D | test_xxd.vim | 58 " For these tests to pass, the fileformat must be "unix".
|
| H A D | test_functions.vim | 1018 call assert_equal('dos', getbufvar(bufnr('%'), '&fileformat')) 1165 set fileformat=unix 1171 set fileformat=mac 1177 set fileformat=dos 1187 let &fileformat = ff 1192 set endofline& fixendofline& fileformat&
|
| H A D | test_recover.vim | 47 set fileformat=unix undolevels=-1
|
| /vim-8.2.3635/runtime/ftplugin/ |
| H A D | mail.vim | 33 let b:undo_ftplugin ..= " fileformat=" .. &fileformat 34 setlocal fileformat=dos
|
| H A D | flexwiki.vim | 37 setlocal fileformat=unix
|
| /vim-8.2.3635/src/ |
| H A D | fileio.c | 2079 if (fileformat == EOL_UNKNOWN) in readfile() 2094 fileformat = EOL_DOS; in readfile() 2096 fileformat = EOL_UNIX; in readfile() 2121 fileformat = EOL_MAC; in readfile() 2127 fileformat = default_fileformat(); in readfile() 2132 fileformat = EOL_MAC; in readfile() 2135 if (fileformat == EOL_UNKNOWN) in readfile() 2148 if (fileformat == EOL_MAC) in readfile() 2204 if (fileformat == EOL_DOS) in readfile() 2226 fileformat = EOL_UNIX; in readfile() [all …]
|
| H A D | scriptfile.c | 1253 cookie.fileformat = EOL_DOS; in do_source() 1255 cookie.fileformat = EOL_UNKNOWN; in do_source() 1663 && sp->fileformat == EOL_DOS in get_one_sourceline() 1682 if (sp->fileformat == EOL_UNKNOWN) in get_one_sourceline() 1685 sp->fileformat = EOL_DOS; in get_one_sourceline() 1687 sp->fileformat = EOL_UNIX; in get_one_sourceline() 1690 if (sp->fileformat == EOL_DOS) in get_one_sourceline() 1706 sp->fileformat = EOL_UNIX; in get_one_sourceline()
|
| H A D | bufwrite.c | 678 int fileformat; in buf_write() local 2015 fileformat = get_fileformat_force(buf, eap); in buf_write() 2032 else if (c == CAR && fileformat == EOL_MAC) in buf_write() 2068 if (fileformat == EOL_UNIX) in buf_write() 2073 if (fileformat == EOL_DOS) // write CR-NL in buf_write() 2397 if (msg_add_fileformat(fileformat)) in buf_write()
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | usr_23.txt | 51 The detected file format is stored in the 'fileformat' option. To see 54 :set fileformat? 93 'fileformat'. You could also use "++ff=mac" or "++ff=dos". 95 implemented. The full names "++fileformat" and "++encoding" also work. 100 You can use the 'fileformat' option to convert from one file format to 109 :set fileformat=unix 287 bytes. This takes into account how 'fileformat' changes the number of bytes
|
| H A D | editing.txt | 240 empty, the 'fileformat' of the current buffer is used. 245 Set 'fileformat' like |:enew|. 458 The [++opt] argument can be used to force the value of 'fileformat', 466 ff or fileformat overrides 'fileformat' 477 This edits the same file again with 'fileformat' set to "unix". > 524 The 'fileformat' option sets the <EOL> style for a file: 525 'fileformat' characters name ~ 542 :set fileformat=unix 548 :set fileformat=dos 564 message "[mac format]" if 'fileformat' is set to "mac". [all …]
|
| H A D | os_dos.txt | 219 If the 'fileformat' option is set to "dos" (which is the default), Vim accepts 224 If the 'fileformat' option is set to "unix", Vim uses a single <NL> for <EOL> 232 Vim sets 'fileformat' automatically when 'fileformats' is not empty (which is 234 |'fileformat'| |'fileformats'|
|
| H A D | insert.txt | 315 Also see 'fileformat'. 2055 The effect is that the 'fileformat', 'fileencoding', 'bomb', etc. options are 2060 The 'fileformat' option sets the <EOL> style for a file: 2061 'fileformat' characters name ~ 2067 If 'fileformat' is "dos", a <CR> in front of an <NL> is ignored and a CTRL-Z 2070 If 'fileformat' is "mac", a <NL> in the file is internally represented by a 2075 <EOL> (see |file-formats|). However, the 'fileformat' option will not be 2103 [CR missing] reading with "dos" 'fileformat' and a 2105 [NL found] reading with "mac" 'fileformat' and a
|
| H A D | indent.txt | 824 If you are editing a file in Unix 'fileformat' and '\r' characters are present 886 To automatically remove '\r' characters when the 'fileformat' is set to Unix: >
|
| /vim-8.2.3635/runtime/spell/ca/ |
| H A D | main.aap | 33 # Make sure the files are in Unix fileformat
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | tt2.vim | 33 " Changed fileformat from 'dos' to 'unix'
|