1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 09:30:06 +08:00

Add key binding for c layer #1171

This commit is contained in:
wsdjeg 2017-12-26 22:23:13 +08:00
parent fd74e124f4
commit 311271a503

View File

@ -94,6 +94,14 @@ function! s:language_specified_mappings() abort
call SpaceVim#mapping#space#langSPC('nmap', ['l','r'],
\ 'call SpaceVim#plugins#runner#open()',
\ 'execute current file', 1)
if SpaceVim#layers#lsp#check_filetype('python')
nnoremap <silent><buffer> K :call SpaceVim#lsp#show_doc()<CR>
call SpaceVim#mapping#space#langSPC('nnoremap', ['l', 'd'],
\ 'call SpaceVim#lsp#show_doc()', 'show_document', 1)
call SpaceVim#mapping#space#langSPC('nnoremap', ['l', 'e'],
\ 'call SpaceVim#lsp#rename()', 'rename symbol', 1)
endif
endfunction