diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-20 12:32:14 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-04-20 13:13:39 +0200 |
commit | 17052946c744abd53d8f3349f453964ffa818bea (patch) | |
tree | b2f4c05e315408182c99a94b0a8cd34d89a71a94 /test/functional/terminal/scrollback_spec.lua | |
parent | a6f50c1120f4427d1b4f531ac564d83b770fd62f (diff) | |
download | rneovim-17052946c744abd53d8f3349f453964ffa818bea.tar.gz rneovim-17052946c744abd53d8f3349f453964ffa818bea.tar.bz2 rneovim-17052946c744abd53d8f3349f453964ffa818bea.zip |
'scrollback': Allow :setlocal -1 on normal buffers
Avoids a spurious :loadview error.
Diffstat (limited to 'test/functional/terminal/scrollback_spec.lua')
-rw-r--r-- | test/functional/terminal/scrollback_spec.lua | 7 |
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*:")) |