diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-12-16 21:33:59 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-12-26 03:58:28 +0100 |
commit | fe60fa9faafd90cfe756c80119abae6f8906fc4b (patch) | |
tree | 3d2dfa4e2e372f6e96e66d5508ad5549c1197a59 /runtime/autoload | |
parent | 249bdb07dd3a9555972deff625d67e4ee0eddc86 (diff) | |
download | rneovim-fe60fa9faafd90cfe756c80119abae6f8906fc4b.tar.gz rneovim-fe60fa9faafd90cfe756c80119abae6f8906fc4b.tar.bz2 rneovim-fe60fa9faafd90cfe756c80119abae6f8906fc4b.zip |
doc
vim-patch:8.0.1206: no autocmd for entering or leaving the command line
(commit a4f6cec7a31ff8dbfa089b9e22227afbeb951e9b)
NA patches:
vim-patch:8.0.0320: warning for unused variable with small build
Diffstat (limited to 'runtime/autoload')
-rw-r--r-- | runtime/autoload/health/nvim.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/health/nvim.vim b/runtime/autoload/health/nvim.vim index 58033f0405..017c047ef4 100644 --- a/runtime/autoload/health/nvim.vim +++ b/runtime/autoload/health/nvim.vim @@ -174,7 +174,7 @@ function! s:check_terminal() abort \ .(empty(kbs_entry) ? '? (not found)' : kdch1_entry)) endif for env_var in ['XTERM_VERSION', 'VTE_VERSION', 'TERM_PROGRAM', 'COLORTERM', 'SSH_TTY'] - if !exists('$'.env_var) + if exists('$'.env_var) call health#report_info(printf("$%s='%s'", env_var, eval('$'.env_var))) endif endfor |