aboutsummaryrefslogtreecommitdiff
path: root/test/functional/terminal/scrollback_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-04-20 14:47:01 +0200
committerGitHub <noreply@github.com>2017-04-20 14:47:01 +0200
commit3a606ee58d550d3307cf69c69267bb02cfae3c31 (patch)
tree939c95a47f0e5bcd0bbd1be678b20a6a942cab88 /test/functional/terminal/scrollback_spec.lua
parenta6f50c1120f4427d1b4f531ac564d83b770fd62f (diff)
parentd55fd9588f621719e3e8c66f69290a00e1fadc1b (diff)
downloadrneovim-3a606ee58d550d3307cf69c69267bb02cfae3c31.tar.gz
rneovim-3a606ee58d550d3307cf69c69267bb02cfae3c31.tar.bz2
rneovim-3a606ee58d550d3307cf69c69267bb02cfae3c31.zip
Merge #6552 from justinmk/loadview
Diffstat (limited to 'test/functional/terminal/scrollback_spec.lua')
-rw-r--r--test/functional/terminal/scrollback_spec.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/functional/terminal/scrollback_spec.lua b/test/functional/terminal/scrollback_spec.lua
index 32f25d4086..05f81295c2 100644
--- a/test/functional/terminal/scrollback_spec.lua
+++ b/test/functional/terminal/scrollback_spec.lua
@@ -451,6 +451,13 @@ describe("'scrollback' option", function()
it(':setlocal in a normal buffer is an error', function()
command('new')
+
+ -- :setlocal to -1 is NOT an error.
+ feed_command('setlocal scrollback=-1')
+ eq(nil, string.match(eval("v:errmsg"), "E%d*:"))
+ feed('<CR>')
+
+ -- :setlocal to anything except -1 is an error.
feed_command('setlocal scrollback=42')
feed('<CR>')
eq('E474:', string.match(eval("v:errmsg"), "E%d*:"))