mirror of
https://github.com/neovim/neovim.git
synced 2024-12-26 14:11:15 -07:00
17 lines
441 B
VimL
17 lines
441 B
VimL
|
" Test for cinoptions and cindent
|
||
|
"
|
||
|
" TODO: rewrite test3.in into this new style test
|
||
|
|
||
|
func Test_cino_hash()
|
||
|
" Test that curbuf->b_ind_hash_comment is correctly reset
|
||
|
new
|
||
|
setlocal cindent cinoptions=#1
|
||
|
setlocal cinoptions=
|
||
|
call setline(1, ["#include <iostream>"])
|
||
|
call cursor(1, 1)
|
||
|
norm! o#include
|
||
|
"call feedkeys("o#include\<esc>", 't')
|
||
|
call assert_equal(["#include <iostream>", "#include"], getline(1,2))
|
||
|
bwipe!
|
||
|
endfunc
|