aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_langmap.vim
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/testdir/test_langmap.vim')
-rw-r--r--src/nvim/testdir/test_langmap.vim48
1 files changed, 24 insertions, 24 deletions
diff --git a/src/nvim/testdir/test_langmap.vim b/src/nvim/testdir/test_langmap.vim
index fc7c6734b1..066c3bf2bd 100644
--- a/src/nvim/testdir/test_langmap.vim
+++ b/src/nvim/testdir/test_langmap.vim
@@ -1,24 +1,24 @@
-" tests for 'langmap'
-
-func Test_langmap()
- new
- set langmap=}l,^x,%v
-
- call setline(1, ['abc'])
- call feedkeys('gg0}^', 'tx')
- call assert_equal('ac', getline(1))
-
- " in Replace mode
- " need silent! to avoid a delay when entering Insert mode
- call setline(1, ['abcde'])
- silent! call feedkeys("gg0lR%{z\<Esc>00", 'tx')
- call assert_equal('a%{ze', getline(1))
-
- " in Select mode
- " need silent! to avoid a delay when entering Insert mode
- call setline(1, ['abcde'])
- silent! call feedkeys("gg0}%}\<C-G>}^\<Esc>00", 'tx')
- call assert_equal('a}^de', getline(1))
-
- quit!
-endfunc
+" tests for 'langmap'
+
+func Test_langmap()
+ new
+ set langmap=}l,^x,%v
+
+ call setline(1, ['abc'])
+ call feedkeys('gg0}^', 'tx')
+ call assert_equal('ac', getline(1))
+
+ " in Replace mode
+ " need silent! to avoid a delay when entering Insert mode
+ call setline(1, ['abcde'])
+ silent! call feedkeys("gg0lR%{z\<Esc>00", 'tx')
+ call assert_equal('a%{ze', getline(1))
+
+ " in Select mode
+ " need silent! to avoid a delay when entering Insert mode
+ call setline(1, ['abcde'])
+ silent! call feedkeys("gg0}%}\<C-G>}^\<Esc>00", 'tx')
+ call assert_equal('a}^de', getline(1))
+
+ quit!
+endfunc