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/screen_basic_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/screen_basic_spec.lua')
-rw-r--r-- | test/functional/ui/screen_basic_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/ui/screen_basic_spec.lua b/test/functional/ui/screen_basic_spec.lua index 957d8c0915..31825bdbf4 100644 --- a/test/functional/ui/screen_basic_spec.lua +++ b/test/functional/ui/screen_basic_spec.lua @@ -48,13 +48,13 @@ describe('screen', function() end) end) -local function screen_tests(newgrid) +local function screen_tests(linegrid) local screen before_each(function() clear() screen = Screen.new() - screen:attach({rgb=true,ext_newgrid=newgrid}) + screen:attach({rgb=true,ext_linegrid=linegrid}) screen:set_default_attr_ids( { [0] = {bold=true, foreground=255}, [1] = {bold=true, reverse=true}, |