1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-23 11:01:34 +08:00
SpaceVim/autoload/SpaceVim/layers/lang/csharp.vim
2018-02-24 17:15:49 +08:00

118 lines
4.4 KiB
VimL

"=============================================================================
" csharp.vim --- SpaceVim lang#csharp layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: VyronLee < lwz_jz # hotmail.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section lang#csharp, layer-lang-csharp
" @parentsection layers
" This layer includes utilities and language-specific mappings for csharp development.
"
" @subsection Key Mappings
" >
" Mode Key Function
" ---------------------------------------------
" normal SPC l b compile the project
" normal SPC l f format current file
" normal SPC l d show doc
" normal SPC l e rename symbol under cursor
" normal SPC l g g go to definition
" normal SPC l g i find implementations
" normal SPC l g t find type
" normal SPC l g s find symbols
" normal SPC l g u find usages of symbol under cursor
" normal SPC l g m find members in the current buffer
" normal SPC l s r reload the solution
" normal SPC l s s start the OmniSharp server
" normal SPC l s S stop the OmniSharp server
" <
function! SpaceVim#layers#lang#csharp#plugins() abort
let plugins = []
call add(plugins, ['OmniSharp/omnisharp-vim', {'on_ft' : 'cs'}])
if has('nvim')
call add(plugins, ['autozimu/deoplete-omnisharp', {'on_ft' : 'cs'}])
else
call add(plugins, ['tpope/vim-dispatch', {'on_ft' : 'cs'}])
endif
return plugins
endfunction
function! SpaceVim#layers#lang#csharp#config() abort
" Get Code Issues and syntax errors
let g:syntastic_cs_checkers = ['syntax', 'semantic', 'issues']
augroup spacevim_csharp
autocmd!
if !has('nvim')
" Set autocomplete function to OmniSharp by default
autocmd FileType cs setlocal omnifunc=OmniSharp#Complete
endif
" Automatically add new cs files to the nearest project on save
autocmd BufWritePost *.cs call OmniSharp#AddToProject()
" Show type information automatically when the cursor stops moving
autocmd CursorHold *.cs call OmniSharp#TypeLookupWithoutDocumentation()
augroup END
call SpaceVim#mapping#space#regesit_lang_mappings('cs', function('s:language_specified_mappings'))
endfunction
" Add language specific mappings
function! s:language_specified_mappings() abort
" Suggested bindings
call SpaceVim#mapping#space#langSPC('nmap', ['l','b'],
\ 'OmniSharpBuildAsync',
\ 'compile the project', 1)
call SpaceVim#mapping#space#langSPC('nmap', ['l','f'],
\ 'OmniSharpCodeFormat',
\ 'format current file', 1)
call SpaceVim#mapping#space#langSPC('nmap', ['l','d'],
\ 'OmniSharpDocumentation',
\ 'show doc', 1)
call SpaceVim#mapping#space#langSPC('nmap', ['l','e'],
\ 'OmniSharpRename',
\ 'rename symbol under cursor', 1)
" Navigation
let g:_spacevim_mappings_space.l.g = {'name' : '+Navigation'}
call SpaceVim#mapping#space#langSPC('nmap', ['l','g', 'g'],
\ 'OmniSharpGotoDefinition',
\ 'go to definition', 1)
call SpaceVim#mapping#space#langSPC('nmap', ['l','g', 'i'],
\ 'OmniSharpFindImplementations',
\ 'find implementations', 1)
call SpaceVim#mapping#space#langSPC('nmap', ['l','g', 't'],
\ 'OmniSharpFindType',
\ 'find type', 1)
call SpaceVim#mapping#space#langSPC('nmap', ['l','g', 's'],
\ 'OmniSharpFindSymbol',
\ 'find symbols', 1)
call SpaceVim#mapping#space#langSPC('nmap', ['l','g', 'u'],
\ 'OmniSharpFindUsages',
\ 'find usages of symbol under cursor', 1)
call SpaceVim#mapping#space#langSPC('nmap', ['l','g', 'm'],
\ 'OmniSharpFindMembers',
\ 'find members in the current buffer', 1)
" Server interaction
let g:_spacevim_mappings_space.l.s = {'name' : '+Server interaction'}
call SpaceVim#mapping#space#langSPC('nmap', ['l','s', 'r'],
\ 'OmniSharpReloadSolution',
\ 'Reload the solution', 1)
call SpaceVim#mapping#space#langSPC('nmap', ['l','s', 's'],
\ 'OmniSharpStartServer',
\ 'Start the OmniSharp server', 1)
call SpaceVim#mapping#space#langSPC('nmap', ['l','s', 'S'],
\ 'OmniSharpStopServer',
\ 'Stop the OmniSharp server', 1)
endfunction