summaryrefslogtreecommitdiff
path: root/autoload/deoplete/handler.vim
diff options
context:
space:
mode:
authorShougo Matsushita <Shougo.Matsu@gmail.com>2019-09-09 21:03:07 +0900
committerShougo Matsushita <Shougo.Matsu@gmail.com>2019-09-09 21:03:07 +0900
commit48b1643509e4ef3a4af6cf57df35e6c6ac1275ce (patch)
treed1955b7605a981092633b62a52d6b11070ef0b15 /autoload/deoplete/handler.vim
parent937f4a5b519afb69f87ea96aa37c8420a3cf90fe (diff)
downloaddeoplete.nvim-48b1643509e4ef3a4af6cf57df35e6c6ac1275ce.zip
Fix getimstatus() check
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 b10a4c6..402e079 100644
--- a/autoload/deoplete/handler.vim
+++ b/autoload/deoplete/handler.vim
@@ -263,7 +263,7 @@ function! s:is_skip_text(event) abort
\ && index(skip_chars, input[-1:]) >= 0)
endfunction
function! s:check_input_method() abort
- return exists('getimstatus') && getimstatus()
+ return exists('*getimstatus') && getimstatus()
endfunction
function! s:define_on_event(event) abort