vim:coc: Abort when coc is not loaded

This commit is contained in:
2025-03-26 00:48:18 +01:00
parent 99d8b6133c
commit 3599a147b8

View File

@@ -1,6 +1,11 @@
" Primarly taken from: " Primarly taken from:
" https://github.com/neoclide/coc.nvim/tree/v0.0.82#example-vim-configuration " https://github.com/neoclide/coc.nvim/tree/v0.0.82#example-vim-configuration
" Abort if CoC is not loaded
if !exists('g:did_coc_loaded')
finish
endif
" Some servers have issues with backup files, see #649. " Some servers have issues with backup files, see #649.
set nobackup set nobackup
set nowritebackup set nowritebackup