aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-03-17 13:00:19 +0100
committerGitHub <noreply@github.com>2017-03-17 13:00:19 +0100
commit0c1f7831649e92b6904ca580ee90acd6ba89d1a8 (patch)
tree0d3980fa4a77c305083dfc3a4ee24249e328408e /test/functional/ui
parent10045cddb6710ea92337d30fb15deded1fe6b432 (diff)
parent1dbe7a4decdd7e93153c0c3cb81197531b719b81 (diff)
downloadrneovim-0c1f7831649e92b6904ca580ee90acd6ba89d1a8.tar.gz
rneovim-0c1f7831649e92b6904ca580ee90acd6ba89d1a8.tar.bz2
rneovim-0c1f7831649e92b6904ca580ee90acd6ba89d1a8.zip
Merge #6087 from justinmk/defaults
defaults: 'ruler', 'showcmd', 'belloff=all'
Diffstat (limited to 'test/functional/ui')
-rw-r--r--test/functional/ui/output_spec.lua6
-rw-r--r--test/functional/ui/screen_basic_spec.lua2
2 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/ui/output_spec.lua b/test/functional/ui/output_spec.lua
index 33086a61b1..c6d564e8dc 100644
--- a/test/functional/ui/output_spec.lua
+++ b/test/functional/ui/output_spec.lua
@@ -8,13 +8,13 @@ describe("shell command :!", function()
before_each(function()
session.clear()
screen = child_session.screen_setup(0, '["'..session.nvim_prog..
- '", "-u", "NONE", "-i", "NONE", "--cmd", "set noswapfile"]')
+ '", "-u", "NONE", "-i", "NONE", "--cmd", "'..session.nvim_set..'"]')
screen:expect([[
{1: } |
{4:~ }|
{4:~ }|
{4:~ }|
- {5:[No Name] }|
+ {4:~ }|
|
{3:-- TERMINAL --} |
]])
@@ -32,7 +32,7 @@ describe("shell command :!", function()
screen:expect([[
{4:~ }|
{4:~ }|
- {5:[No Name] }|
+ {4:~ }|
:!printf foo; sleep 200 |
|
foo |
diff --git a/test/functional/ui/screen_basic_spec.lua b/test/functional/ui/screen_basic_spec.lua
index 0824585717..e511234e5e 100644
--- a/test/functional/ui/screen_basic_spec.lua
+++ b/test/functional/ui/screen_basic_spec.lua
@@ -9,7 +9,7 @@ local eval = helpers.eval
describe('Initial screen', function()
local screen
local nvim_argv = {helpers.nvim_prog, '-u', 'NONE', '-i', 'NONE', '-N',
- '--cmd', 'set shortmess+=I background=light noswapfile',
+ '--cmd', 'set shortmess+=I background=light noswapfile belloff= noshowcmd noruler',
'--embed'}
before_each(function()