diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-12-03 20:58:03 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-03 20:58:03 -0800 |
commit | 3aa95ef27eb8817bc2ceddb6caf2b209e00a5e8d (patch) | |
tree | 390c430bf84e203818b79cd7b69f643b2f43bd6e /test/functional/helpers.lua | |
parent | bcd5fc9764bba22cbfa6c1f2bf8849d5c712c0d9 (diff) | |
parent | 3beef8ee1ca9699d75b8877ec9b77493b58b0ed4 (diff) | |
download | rneovim-3aa95ef27eb8817bc2ceddb6caf2b209e00a5e8d.tar.gz rneovim-3aa95ef27eb8817bc2ceddb6caf2b209e00a5e8d.tar.bz2 rneovim-3aa95ef27eb8817bc2ceddb6caf2b209e00a5e8d.zip |
defaults: set nostartofline (#11135)
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 0f2b04ea00..97248973da 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 = { |