1
0
forked from aniani/vim

patch 9.0.0904: various comment and indent flaws

Problem:    Various comment and indent flaws.
Solution:   Improve comments and indenting.
This commit is contained in:
Bram Moolenaar
2022-11-18 22:14:09 +00:00
parent d13166e788
commit 88456cd3c4
14 changed files with 61 additions and 42 deletions

View File

@@ -76,7 +76,12 @@ func Test_fileformats()
call s:concat_files('XXMac', 'XXEol', 'XXMacEol')
call s:concat_files('XXUxDs', 'XXMac', 'XXUxDsMc')
new
" The :bwipe commands below cause us to get back to the current buffer.
" Avoid stray errors for various 'fileformat' values which may cause a
" modeline to be misinterpreted by wiping the buffer and editing a new one.
only!
bwipe!
enew
" Test 1: try reading and writing with 'fileformats' empty
set fileformats=

View File

@@ -1,11 +1,11 @@
" Test to verify that the three function lists,
" Test to verify that the three function lists:
"
" global_functions[] in src/evalfunc.c
" *functions* in runtime/doc/builtin.txt
" *function-list* in runtime/doc/usr_41.txt
" - global_functions[] in src/evalfunc.c
" - *functions* in runtime/doc/builtin.txt
" - *function-list* in runtime/doc/usr_41.txt
"
" contain the same functions and that the global_functions and ":help
" functions" lists are in ASCII order.
" contain the same functions and that the global_functions and
" ":help functions" lists are in ASCII order.
func Test_function_lists()