This commit is contained in:
wsdjeg 2017-03-25 20:59:39 +08:00
parent 82181481c8
commit 2f3e45f992
2 changed files with 2 additions and 1 deletions

View File

@ -62,7 +62,7 @@
- [聪明的使用 n 和 N](#聪明的使用-n-和-n)
- [聪明的使用命令行历史](#聪明的使用命令行历史)
- [智能 Ctrl-l](#智能-ctrl-l)
- [智能 Ctrl-l](#智能-ctrl-l)
- [禁用错误报警声音和图标](#禁用错误报警声音和图标)
- [快速移动当前行](#快速移动当前行)
- [快速添加空行](#快速添加空行)

View File

@ -18,6 +18,7 @@ let s:ERRORS = {
\ 'E002' : ['中英文之间没有空格', '\(' . s:chars_cn . s:chars . '\)\|\(' . s:chars . s:chars_cn . '\)'],
\ 'E003' : ['中文与数字之间没有空格', '\(' . s:chars_cn . s:numbers . '\)\|\(' . s:numbers . s:chars_cn . '\)'],
\ 'E004' : ['中文标点之后存在空格', s:punctuation_cn . '\s\+'],
\ 'E005' : ['行尾含有空格', '\s\+$'],
\ }
command! -nargs=? CheckChinese call s:check(<q-args>)