From cc6aaa7d2210ff2329da7f4c7cd99ee6c3c1b3ac Mon Sep 17 00:00:00 2001 From: dirw-a11 Date: Fri, 18 Jul 2025 05:12:44 +0800 Subject: [PATCH] Delete plugin directory yes --- plugin/copilot.vim | 114 --------------------------------------------- 1 file changed, 114 deletions(-) delete mode 100644 plugin/copilot.vim diff --git a/plugin/copilot.vim b/plugin/copilot.vim deleted file mode 100644 index f29f800..0000000 --- a/plugin/copilot.vim +++ /dev/null @@ -1,114 +0,0 @@ -if exists('g:loaded_copilot') - finish -endif -let g:loaded_copilot = 1 - -scriptencoding utf-8 - -command! -bang -nargs=? -range=-1 -complete=customlist,copilot#CommandComplete Copilot exe copilot#Command(, , +"", 0, "", ) - -if v:version < 800 || !exists('##InsertLeavePre') - finish -endif - -function! s:ColorScheme() abort - if &t_Co == 256 - hi def CopilotSuggestion guifg=#808080 ctermfg=244 - else - hi def CopilotSuggestion guifg=#808080 ctermfg=12 - endif - hi def link CopilotAnnotation MoreMsg -endfunction - -function! s:MapTab() abort - if get(g:, 'copilot_no_tab_map') || get(g:, 'copilot_no_maps') - return - endif - let tab_map = maparg('', 'i', 0, 1) - if !has_key(tab_map, 'rhs') - imap