mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-13 02:05:40 +08:00
9 lines
205 B
VimL
9 lines
205 B
VimL
let s:gd = {}
|
|
function! SpaceVim#mapping#gd#add(ft, func) abort
|
|
call extend(s:gd,{a:ft : a:func})
|
|
endfunction
|
|
|
|
function! SpaceVim#mapping#gd#get() abort
|
|
return get(s:gd, &filetype, '')
|
|
endfunction
|