aboutsummaryrefslogtreecommitdiff
path: root/test/functional/terminal/helpers.lua
diff options
context:
space:
mode:
authorerw7 <erw7.github@gmail.com>2017-04-02 18:32:23 +0900
committerJustin M. Keyes <justinkz@gmail.com>2017-08-16 09:13:44 +0200
commitd3a8c4f99289f7b65a68bf9ed5eeab34aa688e0e (patch)
treefca344b1ae0315bf9eeaa58056a0f6cd933d2d2d /test/functional/terminal/helpers.lua
parent84fb794da653fc3bcc2832816ca0cab01b4e0400 (diff)
downloadrneovim-d3a8c4f99289f7b65a68bf9ed5eeab34aa688e0e.tar.gz
rneovim-d3a8c4f99289f7b65a68bf9ed5eeab34aa688e0e.tar.bz2
rneovim-d3a8c4f99289f7b65a68bf9ed5eeab34aa688e0e.zip
win/pty: log errors
Diffstat (limited to 'test/functional/terminal/helpers.lua')
-rw-r--r--test/functional/terminal/helpers.lua5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/functional/terminal/helpers.lua b/test/functional/terminal/helpers.lua
index c67640f048..bd24b9785d 100644
--- a/test/functional/terminal/helpers.lua
+++ b/test/functional/terminal/helpers.lua
@@ -30,10 +30,6 @@ local function clear_attrs() feed_termcode('[0;10m') end
-- mouse
local function enable_mouse() feed_termcode('[?1002h') end
local function disable_mouse() feed_termcode('[?1002l') end
-local function print_screen_size()
- helpers.sleep(1000)
- nvim('command', 'call jobsend(b:terminal_job_id, "\\<C-q>")')
-end
local default_command = '["'..nvim_dir..'/tty-test'..'"]'
@@ -115,6 +111,5 @@ return {
clear_attrs = clear_attrs,
enable_mouse = enable_mouse,
disable_mouse = disable_mouse,
- print_screen_size = print_screen_size,
screen_setup = screen_setup
}