1
0
Fork 0
mirror of synced 2024-07-01 04:51:10 -04:00
ultimate-vim/sources_non_forked/vim-go/autoload/go/lsp/filechangetype.vim
2022-05-27 20:16:55 +08:00

20 lines
359 B
VimL

" don't spam the user when Vim is started in Vi compatibility mode
let s:cpo_save = &cpo
set cpo&vim
let s:fct = {
\ 'Created': 1,
\ 'Changed': 2,
\ 'Deleted': 3,
\ }
function! go#lsp#filechangetype#FileChangeType(name)
return s:fct[a:name]
endfunction
" restore Vi compatibility settings
let &cpo = s:cpo_save
unlet s:cpo_save
" vim: sw=2 ts=2 et