mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:9.0.1335: no test for bad use of spaces in help files (#24483)
Problem: No test for bad use of spaces in help files.
Solution: Add checks for use of spaces in help files. Ignore intentional
spaces. (Hirohito Higashi, closes vim/vim#11952)
d950984489
Cherry-pick changes from patch 9.0.1604.
Co-authored-by: h-east <h.east.727@gmail.com>
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
parent
20c331915f
commit
aba3ceccb7
@ -203,7 +203,7 @@ The rouble sign was added in 2014 as 0x20bd. Vim supports the digraphs =R and
|
||||
^] GS 0x1d 29 GROUP SEPARATOR (IS3)
|
||||
^^ RS 0x1e 30 RECORD SEPARATOR (IS2)
|
||||
^_ US 0x1f 31 UNIT SEPARATOR (IS1)
|
||||
SP 0x20 32 SPACE
|
||||
SP 0x20 32 SPACE
|
||||
# Nb 0x23 35 NUMBER SIGN
|
||||
$ DO 0x24 36 DOLLAR SIGN
|
||||
@ At 0x40 64 COMMERCIAL AT
|
||||
|
@ -207,8 +207,8 @@ release.
|
||||
|
||||
• vim.lsp functions:
|
||||
- |vim.lsp.util.get_progress_messages()| Use |vim.lsp.status()| instead.
|
||||
- |vim.lsp.get_active_clients()| Use |vim.lsp.get_clients()| instead.
|
||||
- |vim.lsp.for_each_buffer_client()| Use |vim.lsp.get_clients()| instead.
|
||||
- |vim.lsp.get_active_clients()| Use |vim.lsp.get_clients()| instead.
|
||||
- |vim.lsp.for_each_buffer_client()| Use |vim.lsp.get_clients()| instead.
|
||||
|
||||
• `vim.loop` has been renamed to `vim.uv`.
|
||||
|
||||
|
@ -94,6 +94,9 @@ let s:test_script_fname = expand('%')
|
||||
au! SwapExists * call HandleSwapExists()
|
||||
func HandleSwapExists()
|
||||
if exists('g:ignoreSwapExists')
|
||||
if type(g:ignoreSwapExists) == v:t_string
|
||||
let v:swapchoice = g:ignoreSwapExists
|
||||
endif
|
||||
return
|
||||
endif
|
||||
" Ignore finding a swap file for the test script (the user might be
|
||||
|
63
test/old/testdir/test_codestyle.vim
Normal file
63
test/old/testdir/test_codestyle.vim
Normal file
@ -0,0 +1,63 @@
|
||||
" Test for checking the source code style.
|
||||
|
||||
func s:ReportError(fname, lnum, msg)
|
||||
if a:lnum > 0
|
||||
call assert_report(a:fname .. ' line ' .. a:lnum .. ': ' .. a:msg)
|
||||
endif
|
||||
endfunc
|
||||
|
||||
func Test_help_files()
|
||||
set nowrapscan
|
||||
|
||||
for fpath in glob('../../../runtime/doc/*.txt', 0, 1)
|
||||
let g:ignoreSwapExists = 'e'
|
||||
exe 'edit ' .. fpath
|
||||
|
||||
let fname = fnamemodify(fpath, ":t")
|
||||
|
||||
" todo.txt is for developers, it's not need a strictly check
|
||||
" version*.txt is a history and large size, so it's not checked
|
||||
if fname == 'todo.txt' || fname =~ 'version.*\.txt'
|
||||
continue
|
||||
endif
|
||||
|
||||
" Check for mixed tabs and spaces
|
||||
call cursor(1, 1)
|
||||
while 1
|
||||
let lnum = search('[^/] \t')
|
||||
if fname == 'visual.txt' && getline(lnum) =~ "STRING \tjkl"
|
||||
\ || fname == 'usr_27.txt' && getline(lnum) =~ "\[^\? \t\]"
|
||||
continue
|
||||
endif
|
||||
call s:ReportError(fpath, lnum, 'space before tab')
|
||||
if lnum == 0
|
||||
break
|
||||
endif
|
||||
endwhile
|
||||
|
||||
" Check for unnecessary whitespace at the end of a line
|
||||
call cursor(1, 1)
|
||||
while 1
|
||||
let lnum = search('[^/~\\]\s$')
|
||||
" skip line that are known to have trailing white space
|
||||
if fname == 'map.txt' && getline(lnum) =~ "unmap @@ $"
|
||||
\ || fname == 'usr_12.txt' && getline(lnum) =~ "^\t/ \t$"
|
||||
\ || fname == 'usr_41.txt' && getline(lnum) =~ "map <F4> o#include $"
|
||||
\ || fname == 'change.txt' && getline(lnum) =~ "foobar bla $"
|
||||
continue
|
||||
endif
|
||||
call s:ReportError('testdir' .. fpath, lnum, 'trailing white space')
|
||||
if lnum == 0
|
||||
break
|
||||
endif
|
||||
endwhile
|
||||
|
||||
|
||||
endfor
|
||||
|
||||
set wrapscan&vim
|
||||
bwipe!
|
||||
endfunc
|
||||
|
||||
|
||||
" vim: shiftwidth=2 sts=2 expandtab
|
Loading…
Reference in New Issue
Block a user