1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:40:05 +08:00
SpaceVim/bundle/vim-github-dashboard/plugin/github_dashboard.vim

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>)