diff options
author | Gregory Anders <greg@gpanders.com> | 2024-12-04 08:40:01 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-04 08:40:01 -0600 |
commit | 56d11b494b54862a9b55ca1efcaa35f26c56b3ff (patch) | |
tree | c22325829fbdc0d276f6db6de7844076fc4ff906 /test/functional/terminal/cursor_spec.lua | |
parent | 3cb1e825e679587f5c1c0e911fff4337ba0926a9 (diff) | |
download | rneovim-56d11b494b54862a9b55ca1efcaa35f26c56b3ff.tar.gz rneovim-56d11b494b54862a9b55ca1efcaa35f26c56b3ff.tar.bz2 rneovim-56d11b494b54862a9b55ca1efcaa35f26c56b3ff.zip |
defaults: disable 'number', 'relativenumber', and 'signcolumn' in terminal buffers (#31443)
Diffstat (limited to 'test/functional/terminal/cursor_spec.lua')
-rw-r--r-- | test/functional/terminal/cursor_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/terminal/cursor_spec.lua b/test/functional/terminal/cursor_spec.lua index f223cdd417..4d25fe62ad 100644 --- a/test/functional/terminal/cursor_spec.lua +++ b/test/functional/terminal/cursor_spec.lua @@ -511,7 +511,7 @@ describe('buffer cursor position is correct in terminal with number column', fun before_each(function() clear() - command('set number') + command('au TermOpen * set number') end) describe('in a line with no multibyte chars or trailing spaces,', function() |