1
0
Fork 0
mirror of synced 2024-07-05 15:01:09 -04:00
ultimate-vim/sources_non_forked/vim-go/autoload/go/indent_test.vim
2018-10-14 21:43:54 +08:00

23 lines
522 B
VimL

func! Test_indent_raw_string() abort
try
let l:dir= gotest#write_file('indent/indent.go', [
\ 'package main',
\ '',
\ 'import "fmt"',
\ '',
\ 'func main() {',
\ "\t\x1fconst msg = `",
\ '`',
\ '\tfmt.Println(msg)',
\ '}'])
silent execute "normal o" . "not indented\<Esc>"
let l:indent = indent(line('.'))
call assert_equal(0, l:indent)
finally
call delete(l:dir, 'rf')
endtry
endfunc
" vim: sw=2 ts=2 et