diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-05-10 09:43:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-10 09:43:17 +0200 |
commit | d9023b84e63f51611cf55f72ca5e021d64ba7ce9 (patch) | |
tree | 927e22d842ac2b08f2c8183dd93663d19c51d7ea | |
parent | c66fd3760373fbd870a230ba6fc8fec438e83a27 (diff) | |
download | rneovim-d9023b84e63f51611cf55f72ca5e021d64ba7ce9.tar.gz rneovim-d9023b84e63f51611cf55f72ca5e021d64ba7ce9.tar.bz2 rneovim-d9023b84e63f51611cf55f72ca5e021d64ba7ce9.zip |
health.vim: Remove sensible.vim advice. (#6709)
sensible.vim now avoids setting ttimeoutlen for nvim.
-rw-r--r-- | runtime/autoload/health/nvim.vim | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/runtime/autoload/health/nvim.vim b/runtime/autoload/health/nvim.vim index 4c6aa0eb04..3834cbd054 100644 --- a/runtime/autoload/health/nvim.vim +++ b/runtime/autoload/health/nvim.vim @@ -4,15 +4,6 @@ function! s:check_config() abort let ok = v:true call health#report_start('Configuration') - if get(g:, 'loaded_sensible', 0) - let ok = v:false - let sensible_pi = globpath(&runtimepath, '**/sensible.vim', 1, 1) - call health#report_info("found sensible.vim plugin:\n".join(sensible_pi, "\n")) - call health#report_error("sensible.vim plugin is not needed; Nvim has the same defaults built-in." - \ ." Also, sensible.vim sets 'ttimeoutlen' to a sub-optimal value.", - \ ["Remove sensible.vim plugin, or wrap it in a `if !has('nvim')` check."]) - endif - if exists('$NVIM_TUI_ENABLE_CURSOR_SHAPE') let ok = v:false call health#report_warn("$NVIM_TUI_ENABLE_CURSOR_SHAPE is ignored in Nvim 0.2+", |