Files
neovim/test/functional/options/shortmess_spec.lua
Justin M. Keyes b7514493a0 defaults: shortmess+=F (#8619)
Because we default to laststatus=2 (statusline is always visible), the
:edit message is not useful.

ref #6289
2018-06-22 08:18:02 +02:00

44 lines
1.1 KiB
Lua

local helpers = require('test.functional.helpers')(after_each)
local Screen = require('test.functional.ui.screen')
local command = helpers.command
local clear, feed_command = helpers.clear, helpers.feed_command
if helpers.pending_win32(pending) then return end
describe("'shortmess'", function()
local screen
before_each(function()
clear()
screen = Screen.new(25, 5)
screen:attach()
end)
after_each(function()
screen:detach()
end)
describe('"F" flag', function()
it('hides messages about the files read', function()
command("set shortmess-=F")
feed_command('e test')
screen:expect([[
^ |
~ |
~ |
~ |
"test" is a directory |
]])
feed_command('set shortmess=F')
feed_command('e test')
screen:expect([[
^ |
~ |
~ |
~ |
:e test |
]])
end)
end)
end)