mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 10:40:03 +08:00
13f564b23a
update to d819606eebc82dad34b2a9b7b1a861844380df84
13 lines
309 B
Plaintext
13 lines
309 B
Plaintext
Given markdown:
|
|
你好,中文
|
|
Execute (test clear errors):
|
|
CheckChinese
|
|
AssertEqual getqflist()[0].lnum, 1
|
|
AssertEqual getqflist()[0].col, 7
|
|
AssertEqual getqflist()[0].text[:3], 'E001'
|
|
wincmd p
|
|
call setline(1, '你好,中文')
|
|
CheckChinese
|
|
AssertEqual len(getqflist()), 0
|
|
|