1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 02:50:03 +08:00
SpaceVim/bundle/vim-cmake/plugin/cmake.vim
2023-03-26 13:50:22 +08:00

16 lines
482 B
VimL
Vendored

"=============================================================================
" cmake.vim --- cmake plugin
" Copyright (c) 2016-2023 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg@outlook.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
command! -nargs=* Cmake call cmake#run(<q-args>)
function! cmake#run(str) abort
call SpaceVim#plugins#runner#open('cmake ' . a:str)
endfunction