X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/56388f1e2bc97e149a6cb95ae9d9c32bbaa54207..e8ae4a469b8b5db19a27a2bf71bb04142a68a6f0:/vim/ftplugin/cpp.vim diff --git a/vim/ftplugin/cpp.vim b/vim/ftplugin/cpp.vim index c053fcc..12c6443 100644 --- a/vim/ftplugin/cpp.vim +++ b/vim/ftplugin/cpp.vim @@ -53,6 +53,7 @@ nnoremap d :vs:YcmCompleter GoTo nnoremap gD :YcmCompleter GoToReferences nnoremap fi :YcmCompleter FixIt +nnoremap fr :YcmCompleter RefactorRename " format with = call operator#user#define_ex_command('ycmcompleter-format', 'YcmCompleter Format') @@ -69,6 +70,11 @@ nmap gh (YCMHover) nmap gH :YcmCompleter GetDoc setlocal errorformat= +" TODO I don't remember these errorformat or what they match, maybe CMake? {{{ +setlocal errorformat+=\ %##%n\ %m\ %f:%l:%c +setlocal errorformat+=\ %##%n\ %m\ %f +setlocal errorformat+=%n +"}}} setlocal errorformat+=%f:%l:%c:\ %trror:\ %m setlocal errorformat+=%f:%l:%c:\ %tarning:\ %m setlocal errorformat+=%D%*\\a[%*\\d]:\ Entering\ directory\ [`']%f' @@ -91,10 +97,6 @@ function! s:Debug(...) nnoremap :Step nnoremap :Over nnoremap :Finish - nnoremap :call TermDebugSendCommand('advance -source '.expand('%').' -line '.line(".")) - nnoremap :Step - nnoremap :Over - nnoremap :Finish endfunction command! -nargs=* -complete=file -bang Debug call Debug() | Termdebug command! -nargs=+ -complete=file -bang DebugCommand call Debug() | TermdebugCommand