aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui/screen.lua
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2015-01-08 11:23:45 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2015-01-12 09:47:41 -0300
commit74c247f75baec5778296adf164831c5ffea0fb88 (patch)
tree1950d2681c1d659edf86477188020f04ea1492e6 /test/functional/ui/screen.lua
parenta8fe32040b039c134087c4c0d8c9e14bf50fef1a (diff)
downloadrneovim-74c247f75baec5778296adf164831c5ffea0fb88.tar.gz
rneovim-74c247f75baec5778296adf164831c5ffea0fb88.tar.bz2
rneovim-74c247f75baec5778296adf164831c5ffea0fb88.zip
ui: Add 'rgb' parameter to ui_attach
When set to false, nvim will send cterm color numbers with `highlight_set`.
Diffstat (limited to 'test/functional/ui/screen.lua')
-rw-r--r--test/functional/ui/screen.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua
index a965b3626a..04d89d8331 100644
--- a/test/functional/ui/screen.lua
+++ b/test/functional/ui/screen.lua
@@ -115,7 +115,7 @@ function Screen:set_default_attr_ids(attr_ids)
end
function Screen:attach()
- request('ui_attach', self._width, self._height)
+ request('ui_attach', self._width, self._height, true)
self._suspended = false
end