aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_syntax.vim
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-03-30 06:43:10 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-03-30 06:49:37 -0400
commite491e77498e8f4b2e801b51271e5e50dd7976ae3 (patch)
treebcf7547063e5e1213a767f5b7945bde58ec5764e /src/nvim/testdir/test_syntax.vim
parentf89bfa68692540c2a28794297ce2ab63892de410 (diff)
downloadrneovim-e491e77498e8f4b2e801b51271e5e50dd7976ae3.tar.gz
rneovim-e491e77498e8f4b2e801b51271e5e50dd7976ae3.tar.bz2
rneovim-e491e77498e8f4b2e801b51271e5e50dd7976ae3.zip
vim-patch:8.1.1193: typos and small problems in test files
Problem: Typos and small problems in test files. Solution: Small improvements. https://github.com/vim/vim/commit/037c54f261818439755d56e318da068f97997fb5 Include unmerged patch v8.0.1200 changes because this patch depends on `set beloff=all` removed in 1 test.
Diffstat (limited to 'src/nvim/testdir/test_syntax.vim')
-rw-r--r--src/nvim/testdir/test_syntax.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_syntax.vim b/src/nvim/testdir/test_syntax.vim
index 4cf0e983b0..66cb0bbe22 100644
--- a/src/nvim/testdir/test_syntax.vim
+++ b/src/nvim/testdir/test_syntax.vim
@@ -30,7 +30,7 @@ func Test_syn_iskeyword()
\ 'CREATE TABLE FOOBAR(',
\ ' DLTD_BY VARCHAR2(100)',
\ ');',
- \ ''])
+ \ ''])
syntax on
set ft=sql
@@ -521,7 +521,7 @@ func Test_synstack_synIDtrans()
norm f/
call assert_equal(['cComment', 'cCommentStart'], map(synstack(line("."), col(".")), 'synIDattr(v:val, "name")'))
- call assert_equal(['Comment', 'Comment'], map(synstack(line("."), col(".")), 'synIDattr(synIDtrans(v:val), "name")'))
+ call assert_equal(['Comment', 'Comment'], map(synstack(line("."), col(".")), 'synIDattr(synIDtrans(v:val), "name")'))
norm fA
call assert_equal(['cComment'], map(synstack(line("."), col(".")), 'synIDattr(v:val, "name")'))