diff options
author | KillTheMule <KillTheMule@users.noreply.github.com> | 2020-10-12 18:01:43 +0200 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2022-04-05 20:21:43 +0200 |
commit | 54cec455ccdae2a63144809f947dad5cf510b7c7 (patch) | |
tree | a5a8ff387e11ae1dd74b84496cf50f44f4fe4c91 /test/functional/ui/cmdline_spec.lua | |
parent | 969d600f2a107507c60e4ac3f3a8c03210662f96 (diff) | |
download | rneovim-54cec455ccdae2a63144809f947dad5cf510b7c7.tar.gz rneovim-54cec455ccdae2a63144809f947dad5cf510b7c7.tar.bz2 rneovim-54cec455ccdae2a63144809f947dad5cf510b7c7.zip |
fix(ui): inccomand performance degradation
It was broken since the introduction of the macro.
Diffstat (limited to 'test/functional/ui/cmdline_spec.lua')
-rw-r--r-- | test/functional/ui/cmdline_spec.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/ui/cmdline_spec.lua b/test/functional/ui/cmdline_spec.lua index ad23402ff9..3b273fd229 100644 --- a/test/functional/ui/cmdline_spec.lua +++ b/test/functional/ui/cmdline_spec.lua @@ -4,6 +4,7 @@ local clear, feed = helpers.clear, helpers.feed local source = helpers.source local command = helpers.command local assert_alive = helpers.assert_alive +local uname = helpers.uname local function new_screen(opt) local screen = Screen.new(25, 5) @@ -824,7 +825,7 @@ describe('cmdline redraw', function() end) it('with <Cmd>', function() - if 'openbsd' == helpers.uname() then + if string.find(uname(), 'bsd') then pending('FIXME #10804') end command('cmap a <Cmd>call sin(0)<CR>') -- no-op |