aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJ Phani Mahesh <github@phanimahesh.me>2016-10-29 18:18:19 +0530
committerJustin M. Keyes <justinkz@gmail.com>2016-10-29 14:48:19 +0200
commit3d49fc1f5043f0d6cd3a58fbb29767cfba40b014 (patch)
treea0acf115dcdee1ba697bcd2781b5daef78eca4db
parent242c3d5f0b5388ccc1f0532663fcf853cd8c3e51 (diff)
downloadrneovim-3d49fc1f5043f0d6cd3a58fbb29767cfba40b014.tar.gz
rneovim-3d49fc1f5043f0d6cd3a58fbb29767cfba40b014.tar.bz2
rneovim-3d49fc1f5043f0d6cd3a58fbb29767cfba40b014.zip
CheckHealth: fix check for tmux escape-time (#5545)
-rw-r--r--runtime/autoload/health/nvim.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/health/nvim.vim b/runtime/autoload/health/nvim.vim
index a5c095bcba..ea87e4b3ac 100644
--- a/runtime/autoload/health/nvim.vim
+++ b/runtime/autoload/health/nvim.vim
@@ -106,7 +106,7 @@ function! s:check_tmux() abort
call health#report_error('command failed: '.cmd."\n".out)
elseif empty(tmux_esc_time)
call health#report_error('escape-time is not set', suggestions)
- elseif tmux_esc_time > 500
+ elseif tmux_esc_time > 300
call health#report_error(
\ 'escape-time ('.tmux_esc_time.') is higher than 300ms', suggestions)
else