summaryrefslogtreecommitdiff
path: root/autoload/deoplete/handler.vim
diff options
context:
space:
mode:
authorShougo Matsushita <Shougo.Matsu@gmail.com>2020-10-14 09:56:27 +0900
committerShougo Matsushita <Shougo.Matsu@gmail.com>2020-10-14 09:56:27 +0900
commitc41ee14637f62404658567870caf7b507f0b9014 (patch)
tree0c7568f91aaa051c22a25b71b25ac3e27fddc253 /autoload/deoplete/handler.vim
parent36775838ad578e4d2b5ac83f936d8be7640a0a76 (diff)
downloaddeoplete.nvim-c41ee14637f62404658567870caf7b507f0b9014.zip
Fix #1135 disable popup flicker prevents
Diffstat (limited to 'autoload/deoplete/handler.vim')
-rw-r--r--autoload/deoplete/handler.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/deoplete/handler.vim b/autoload/deoplete/handler.vim
index 4c2fcbb..8f99e14 100644
--- a/autoload/deoplete/handler.vim
+++ b/autoload/deoplete/handler.vim
@@ -208,7 +208,7 @@ function! deoplete#handler#_completion_begin(event) abort
\ 'auto_complete_popup') !=# 'manual'
if auto_popup || deoplete#util#check_popup()
" For popup flicker
- call feedkeys("\<Plug>_", 'i')
+ "call feedkeys("\<Plug>_", 'i')
endif
endfunction
function! s:is_skip(event) abort