remove TODO from src

This commit is contained in:
wsdjeg 2017-03-25 20:06:34 +08:00
parent 804b04fa9f
commit 808c04f90d

View File

@ -19,13 +19,6 @@ let s:ERRORS = {
\ 'E003' : ['中文与数字之间没有空格', '\(' . s:chars_cn . s:numbers . '\)\|\(' . s:numbers . s:chars_cn . '\)'],
\ 'E004' : ['中文标点之后存在空格', s:punctuation_cn . '\s\+'],
\ }
" TODO
"
"\ 'E004' : ['数字与单位之间需要增加空格', ''],
"\ 'E006' : ['不重复使用标点符号', ''],
"\ 'E007' : ['使用全角中文标点', ''],
"\ 'E008' : ['数字使用半角字符', ''],
"\ 'E009' : ['遇到完整的英文整句、特殊名词,其內容使用半角标点', ''],
command! -nargs=? CheckChinese call s:check(<q-args>)