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 /test/functional/helpers.lua | |
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 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index 1108fbb2ba..9fcd1cf7b1 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -35,7 +35,7 @@ module.nvim_prog = ( ) -- Default settings for the test session. module.nvim_set = ( - 'set shortmess+=IS background=light noswapfile noautoindent' + 'set shortmess+=IS background=light noswapfile noautoindent startofline' ..' laststatus=1 undodir=. directory=. viewdir=. backupdir=.' ..' belloff= wildoptions-=pum noshowcmd noruler nomore redrawdebug=invalid') module.nvim_argv = { |