summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2020-10-24 21:46:04 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2020-10-24 21:46:04 +0200
commit20b31f533764c4c32582124de8d8a6f6c9499c8a (patch)
treea1f872c30652d3997e6532ef0d63eff59d2335ac
parent8e61708b4527072aa9250deb2c4cf7a56e3f3b0a (diff)
downloadvim-polyglot-20b31f533764c4c32582124de8d8a6f6c9499c8a.tar.gz
vim-polyglot-20b31f533764c4c32582124de8d8a6f6c9499c8a.zip
Fix warning in command line window, closes #604
-rw-r--r--plugin/polyglot.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/polyglot.vim b/plugin/polyglot.vim
index f989d583..bfd9c1a0 100644
--- a/plugin/polyglot.vim
+++ b/plugin/polyglot.vim
@@ -74,7 +74,7 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'sensible') == -
if match(capture, 'checktime') == -1
augroup polyglot-sensible
au!
- au CursorHold * checktime
+ au CursorHold * silent! checktime
augroup END
endif