diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-04-05 21:23:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-05 21:23:27 +0200 |
commit | f86f74c12ff53155818c25a50f6a2f27b8dfae49 (patch) | |
tree | ee7bf41f97e2b871c591b9be532eda760531f35f /test/functional/ui/cmdline_spec.lua | |
parent | 402a71ff87baf6f68d9dae6f5faa2b49f2d9045f (diff) | |
parent | 54cec455ccdae2a63144809f947dad5cf510b7c7 (diff) | |
download | rneovim-f86f74c12ff53155818c25a50f6a2f27b8dfae49.tar.gz rneovim-f86f74c12ff53155818c25a50f6a2f27b8dfae49.tar.bz2 rneovim-f86f74c12ff53155818c25a50f6a2f27b8dfae49.zip |
Merge pull request #18003 from bfredl/incperf2
fix(ui): inccomand performance degradation
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 |