diff options
| author | Matthieu Coudron <mattator@gmail.com> | 2019-10-01 23:14:00 +0900 |
|---|---|---|
| committer | Matthieu Coudron <mattator@gmail.com> | 2019-12-03 13:31:17 +0100 |
| commit | 3beef8ee1ca9699d75b8877ec9b77493b58b0ed4 (patch) | |
| tree | 51141b1b430920f6925e178905228e019d21fc79 /src/nvim/testdir | |
| parent | 1ff5b60cb96aea3b3f6ef9e2792c5797dfda72dc (diff) | |
| download | rneovim-3beef8ee1ca9699d75b8877ec9b77493b58b0ed4.tar.gz rneovim-3beef8ee1ca9699d75b8877ec9b77493b58b0ed4.tar.bz2 rneovim-3beef8ee1ca9699d75b8877ec9b77493b58b0ed4.zip | |
defaults: set nostartofline
Having the cursor change column can be surprising.
Force startofline in functional and old tests.
Remove the functional breakindent test, as it's a subset of the oldtest one.
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/setup.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/setup.vim b/src/nvim/testdir/setup.vim index ea28f328ae..d032c9a739 100644 --- a/src/nvim/testdir/setup.vim +++ b/src/nvim/testdir/setup.vim @@ -19,6 +19,7 @@ set sidescroll=0 set tags=./tags,tags set undodir^=. set wildoptions= +set startofline " Prevent Nvim log from writing to stderr. let $NVIM_LOG_FILE = exists($NVIM_LOG_FILE) ? $NVIM_LOG_FILE : 'Xnvim.log' |