From 9e38a6e43396069178fbfe28c1fe85b887e999df Mon Sep 17 00:00:00 2001 From: Gitea Date: Wed, 13 Apr 2022 05:59:47 -0400 Subject: [PATCH] Completor removed, use CoC instead --- .vimrc | 9 +++++---- README.md | 10 ++++++++-- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.vimrc b/.vimrc index f86501e..10d7f6a 100644 --- a/.vimrc +++ b/.vimrc @@ -11,9 +11,9 @@ Plug 'junegunn/goyo.vim' Plug 'junegunn/limelight.vim' " Auto Completes -" Plug 'neoclide/coc.nvim', +Plug 'neoclide/coc.nvim', " Plug 'sheerun/vim-polyglot' -Plug 'maralla/completor.vim' +" Plug 'maralla/completor.vim' " Color Schemes Plug 'rakr/vim-two-firewatch' @@ -103,10 +103,11 @@ let g:limelight_default_coefficient = 0.7 " Set it to -1 not to overrule hlsearch let g:limelight_priority = -1 -"Completor Tab +"CoC Tab inoremap pumvisible() ? "\" : "\" inoremap pumvisible() ? "\" : "\" -inoremap pumvisible() ? "\" : "\" +inoremap pumvisible() ? "\" : "\u\" +let g:coc_disable_startup_warning = 1 "Goyo Setup "Call Limelight every time enter Goyo diff --git a/README.md b/README.md index 9c6d46f..540e9fa 100644 --- a/README.md +++ b/README.md @@ -40,9 +40,15 @@ Toggle Goyo from command input mode `:Goyo` or use the shortcut. Toggle Limelight from command input mode `:Limelight` or use the shortcut. -### Completor +### Autocomplete : Completor + +> Completor is not good for servers, as it requires vim version with python support. + +### Autocomplete : coc + +coc now can use tab to navigate completion list + -For autocomplete I choose completor. Jut type as usual and the completor will offer some completion, use tab to choose. ## Future Improvement