summaryrefslogtreecommitdiff
path: root/autoload/deoplete/handler.vim
diff options
context:
space:
mode:
Diffstat (limited to 'autoload/deoplete/handler.vim')
-rw-r--r--autoload/deoplete/handler.vim7
1 files changed, 1 insertions, 6 deletions
diff --git a/autoload/deoplete/handler.vim b/autoload/deoplete/handler.vim
index c9ce1e2..ef88ace 100644
--- a/autoload/deoplete/handler.vim
+++ b/autoload/deoplete/handler.vim
@@ -311,14 +311,9 @@ function! s:matched_indentkeys(input) abort
for word in filter(map(split(&l:indentkeys, ','),
\ "v:val =~# '^<.*>$' ? matchstr(v:val, '^<\\zs.*\\ze>$')
- \ : matchstr(v:val, ':\\|e\\|=\\zs.*')"),
+ \ : matchstr(v:val, 'e\\|=\\zs.*')"),
\ "v:val !=# ''")
- if word ==# ':' && &filetype ==# 'vim'
- " ':' completion must not be skipped
- continue
- endif
-
if word ==# 'e'
let word = 'else'
endif