mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 10:00:06 +08:00
12 lines
446 B
VimL
12 lines
446 B
VimL
|
if !has('ruby')
|
||
|
finish
|
||
|
endif
|
||
|
|
||
|
if exists("g:loaded_github_dashboard_plugin")
|
||
|
finish
|
||
|
endif
|
||
|
let g:loaded_github_dashboard_plugin = 1
|
||
|
|
||
|
command! -nargs=* -complete=customlist,github_dashboard#autocomplete -bang GHDashboard call github_dashboard#open('!' != '<bang>', 'received_events', <f-args>)
|
||
|
command! -nargs=* -complete=customlist,github_dashboard#autocomplete -bang GHActivity call github_dashboard#open('!' != '<bang>', 'events', <f-args>)
|