diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2018-10-02 10:55:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-02 10:55:47 +0200 |
commit | 171c80e22769868a1174480c2feeb6675d2828c5 (patch) | |
tree | 235a4101886a60fc401420de39fd0072798858ed /test/functional/ui/cmdline_spec.lua | |
parent | 8ac44984c49b05940864caa379dab21af6bc5eca (diff) | |
parent | bab3b0ad45d0512ad4e5d42a44807bb39492435f (diff) | |
download | rneovim-171c80e22769868a1174480c2feeb6675d2828c5.tar.gz rneovim-171c80e22769868a1174480c2feeb6675d2828c5.tar.bz2 rneovim-171c80e22769868a1174480c2feeb6675d2828c5.zip |
Merge pull request #9064 from bfredl/uidoc
UI: rename ext_newgrid to ext_linegrid and add --embed UI startup recommendations
Diffstat (limited to 'test/functional/ui/cmdline_spec.lua')
-rw-r--r-- | test/functional/ui/cmdline_spec.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/ui/cmdline_spec.lua b/test/functional/ui/cmdline_spec.lua index d39b24a00f..af26a6d88f 100644 --- a/test/functional/ui/cmdline_spec.lua +++ b/test/functional/ui/cmdline_spec.lua @@ -4,13 +4,13 @@ local clear, feed = helpers.clear, helpers.feed local source = helpers.source local command = helpers.command -local function test_cmdline(newgrid) +local function test_cmdline(linegrid) local screen before_each(function() clear() screen = Screen.new(25, 5) - screen:attach({rgb=true, ext_cmdline=true, ext_newgrid=newgrid}) + screen:attach({rgb=true, ext_cmdline=true, ext_linegrid=linegrid}) screen:set_default_attr_ids({ [1] = {bold = true, foreground = Screen.colors.Blue1}, [2] = {reverse = true}, @@ -608,7 +608,7 @@ local function test_cmdline(newgrid) end) end --- the representation of cmdline and cmdline_block contents changed with ext_newgrid +-- the representation of cmdline and cmdline_block contents changed with ext_linegrid -- (which uses indexed highlights) so make sure to test both describe('ui/ext_cmdline', function() test_cmdline(true) end) describe('ui/ext_cmdline (legacy highlights)', function() test_cmdline(false) end) |