diff options
author | Andrew Pyatkov <mrbiggfoot@gmail.com> | 2018-04-28 16:39:21 -0700 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-01-29 03:00:48 +0100 |
commit | 894f6bee54e80811f95b8767327d39ab277a4866 (patch) | |
tree | 2e68b87f74f971b6cd7d82dd3a35df95cd128fa4 /test/functional/terminal/scrollback_spec.lua | |
parent | 28f87c505d895df8d00a919f6324f5305f02166e (diff) | |
download | rneovim-894f6bee54e80811f95b8767327d39ab277a4866.tar.gz rneovim-894f6bee54e80811f95b8767327d39ab277a4866.tar.bz2 rneovim-894f6bee54e80811f95b8767327d39ab277a4866.zip |
:terminal : set topline based on window height #8325
closes #8324
closes #8556
Diffstat (limited to 'test/functional/terminal/scrollback_spec.lua')
-rw-r--r-- | test/functional/terminal/scrollback_spec.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/terminal/scrollback_spec.lua b/test/functional/terminal/scrollback_spec.lua index 1c97441213..38c7e385cc 100644 --- a/test/functional/terminal/scrollback_spec.lua +++ b/test/functional/terminal/scrollback_spec.lua @@ -12,7 +12,7 @@ local curbufmeths = helpers.curbufmeths local nvim = helpers.nvim local feed_data = thelpers.feed_data -describe('terminal scrollback', function() +describe(':terminal scrollback', function() local screen before_each(function() @@ -344,7 +344,7 @@ describe('terminal scrollback', function() end) end) -describe('terminal prints more lines than the screen height and exits', function() +describe(':terminal prints more lines than the screen height and exits', function() it('will push extra lines to scrollback', function() clear() local screen = Screen.new(30, 7) @@ -460,7 +460,7 @@ describe("'scrollback' option", function() screen:detach() end) - it('defaults to 10000 in terminal buffers', function() + it('defaults to 10000 in :terminal buffers', function() set_fake_shell() command('terminal') eq(10000, curbufmeths.get_option('scrollback')) |