summaryrefslogtreecommitdiff
path: root/vim/.vimrc
diff options
context:
space:
mode:
authorUrbain Vaes <urbain@vaes.uk>2019-03-06 14:25:30 +0100
committerUrbain Vaes <urbain@vaes.uk>2019-03-06 14:25:30 +0100
commit2049221388f7be88703f4994d135ad8fbe1eb20f (patch)
tree6769e87a02d30670ef603c6fc70d921b05697eed /vim/.vimrc
parent52a0dd8ddb5163211dd7e3835513937a6b856f2b (diff)
[vifm] Add shortcut for inkscape
Diffstat (limited to 'vim/.vimrc')
-rw-r--r--vim/.vimrc2
1 files changed, 2 insertions, 0 deletions
diff --git a/vim/.vimrc b/vim/.vimrc
index 11f5469..eecd1c5 100644
--- a/vim/.vimrc
+++ b/vim/.vimrc
@@ -254,12 +254,14 @@ endif
function! Multiple_cursors_before()
if has("nvim")
let b:deoplete_disable_auto_complete = 1
+ call deoplete#disable()
endif
endfunction
function! Multiple_cursors_after()
if has("nvim")
let b:deoplete_disable_auto_complete = 0
+ call deoplete#enable()
else
endfunction