diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2017-03-19 23:45:11 +0100 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2017-03-19 23:52:17 +0100 |
| commit | 2f54d6927cc02484b528a5e8b25b64c8d6580ddd (patch) | |
| tree | b9cebfa51815137e8c26b9d3581106e551aba81d /src/nvim/testdir/runtest.vim | |
| parent | db128974fcbd5702ca724610590a5dafa2e87712 (diff) | |
| download | rneovim-2f54d6927cc02484b528a5e8b25b64c8d6580ddd.tar.gz rneovim-2f54d6927cc02484b528a5e8b25b64c8d6580ddd.tar.bz2 rneovim-2f54d6927cc02484b528a5e8b25b64c8d6580ddd.zip | |
test/legacy: fix test_normal.vim
Diffstat (limited to 'src/nvim/testdir/runtest.vim')
| -rw-r--r-- | src/nvim/testdir/runtest.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/runtest.vim b/src/nvim/testdir/runtest.vim index 0403a53f9c..b4eb9de506 100644 --- a/src/nvim/testdir/runtest.vim +++ b/src/nvim/testdir/runtest.vim @@ -68,10 +68,10 @@ let $HOME = '/does/not/exist' " Prepare for calling garbagecollect_for_testing(). let v:testing = 1 -" Align with vim defaults. +" Align Nvim defaults to Vim. set directory^=. -set nohidden set backspace= +set nohidden smarttab noautoindent noautoread complete-=i noruler noshowcmd function RunTheTest(test) echo 'Executing ' . a:test |