From 02cf0f9b678eae0815d9da4347cab8971b160cb6 Mon Sep 17 00:00:00 2001 From: Guangxiong Lin Date: Fri, 10 Dec 2021 01:26:20 +0800 Subject: Add several ycm commands --- .vim/plugin/godot.vim | 27 ++++++++++++++++++--------- .vim/plugin/init.vim | 2 -- .vim/plugin/youcompleteme.vim | 6 ++++++ 3 files changed, 24 insertions(+), 11 deletions(-) (limited to '.vim') diff --git a/.vim/plugin/godot.vim b/.vim/plugin/godot.vim index 6bcf679..655710e 100644 --- a/.vim/plugin/godot.vim +++ b/.vim/plugin/godot.vim @@ -1,19 +1,11 @@ if has('macunix') let g:godot_executable = '/Applications/Godot.app' endif + if has('win32') || has('win32unix') let g:godot_executable = '' endif -let g:ycm_language_server += [ - \ { - \ 'name': 'godot', - \ 'filetypes': ['gdscript'], - \ 'project_root_files': ['project.godot'], - \ 'port': 6008 - \ } - \ ] - func! s:godot_settings() abort setlocal tabstop=4 nnoremap rl :GodotRunLast @@ -25,6 +17,23 @@ augroup godot | au! au FileType gdscript call s:godot_settings() augroup end +"YCM config + +if !has_key( g:, 'ycm_language_server' ) + let g:ycm_language_server = [] +endif + +let g:ycm_language_server += [ + \ { + \ 'name': 'godot', + \ 'filetypes': ['gdscript'], + \ 'project_root_files': ['project.godot'], + \ 'port': 6008 + \ } + \ ] + +" ALE config + call ale#linter#Define('gdscript', { \ 'name': 'godot', \ 'lsp': 'socket', diff --git a/.vim/plugin/init.vim b/.vim/plugin/init.vim index 6ecd7cd..75d4871 100644 --- a/.vim/plugin/init.vim +++ b/.vim/plugin/init.vim @@ -24,8 +24,6 @@ function! BuildYCM(info) exec '!python3 ./install.py' . ycm_install_options endfunction -let g:ycm_language_server = [] - call plug#begin('~/.vim/plugged') " General diff --git a/.vim/plugin/youcompleteme.vim b/.vim/plugin/youcompleteme.vim index f54613f..4a1e7cd 100644 --- a/.vim/plugin/youcompleteme.vim +++ b/.vim/plugin/youcompleteme.vim @@ -22,6 +22,11 @@ let g:ycm_filetype_blacklist = { \ 'org': 1 \ } +command YcmCompleterGoTo :YcmCompleter GoTo +command YcmCompleterGoToType :YcmCompleter GoToType +command YcmCompleterGoToReferences :YcmCompleter GoToReferences +command YcmCompleterGoToImplementation :YcmCompleter GoToImplementation + nnoremap gd :YcmCompleter GoTo nnoremap gr :YcmCompleter GoToReferences nnoremap gi :YcmCompleter GoToImplementation @@ -31,3 +36,4 @@ nmap gS (YCMFindSymbolInWorkspace) nmap K (YCMHover) autocmd! BufWritePre *.rs,*.go call execute('YcmCompleter Format') + -- cgit v1.2.3