From ae1344805a1408e39051e409de3202a7192eabe2 Mon Sep 17 00:00:00 2001 From: infidel Date: Fri, 15 Apr 2022 14:35:02 +0700 Subject: [PATCH] Fix coc tab bug --- .vimrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.vimrc b/.vimrc index 08408b4..e460eb7 100644 --- a/.vimrc +++ b/.vimrc @@ -114,6 +114,11 @@ inoremap \ coc#refresh() inoremap pumvisible() ? "\" : "\" +function! s:check_back_space() abort + let col = col('.') - 1 + return !col || getline('.')[col - 1] =~# '\s' + endfunction + "Coc vimlsp Highlighting let g:markdown_fenced_languages = [ \ 'vim',