aboutsummaryrefslogtreecommitdiff
path: root/test/functional/terminal/cursor_spec.lua
diff options
context:
space:
mode:
authorGregory Anders <greg@gpanders.com>2024-12-04 08:40:01 -0600
committerGitHub <noreply@github.com>2024-12-04 08:40:01 -0600
commit56d11b494b54862a9b55ca1efcaa35f26c56b3ff (patch)
treec22325829fbdc0d276f6db6de7844076fc4ff906 /test/functional/terminal/cursor_spec.lua
parent3cb1e825e679587f5c1c0e911fff4337ba0926a9 (diff)
downloadrneovim-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.lua2
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()