aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_excmd.vim
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-07-10 06:59:58 +0800
committerGitHub <noreply@github.com>2022-07-10 06:59:58 +0800
commit880de9a489be57d07416d1de9f869d4cba1e490c (patch)
tree9dc186bdb3300bb1a85610b7b9ea007313262d47 /src/nvim/testdir/test_excmd.vim
parentd6a1e718813f744b997e1b8fc707cbd47125db5c (diff)
downloadrneovim-880de9a489be57d07416d1de9f869d4cba1e490c.tar.gz
rneovim-880de9a489be57d07416d1de9f869d4cba1e490c.tar.bz2
rneovim-880de9a489be57d07416d1de9f869d4cba1e490c.zip
test(old): align defaults to Vim after every test (#19301)
This can avoid divergences from Vim in some small places.
Diffstat (limited to 'src/nvim/testdir/test_excmd.vim')
-rw-r--r--src/nvim/testdir/test_excmd.vim2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_excmd.vim b/src/nvim/testdir/test_excmd.vim
index b3052abb24..df2cf97633 100644
--- a/src/nvim/testdir/test_excmd.vim
+++ b/src/nvim/testdir/test_excmd.vim
@@ -147,7 +147,6 @@ endfunc
" Test for the :insert command
func Test_insert_cmd()
- set noautoindent " test assumes noautoindent, but it's on by default in Nvim
new
call setline(1, [' L1'])
call feedkeys(":insert\<CR> L2\<CR> L3\<CR>.\<CR>", 'xt')
@@ -197,7 +196,6 @@ endfunc
" Test for the :change command
func Test_change_cmd()
- set noautoindent " test assumes noautoindent, but it's on by default in Nvim
new
call setline(1, [' L1', 'L2', 'L3'])
call feedkeys(":change\<CR> L4\<CR> L5\<CR>.\<CR>", 'xt')