mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 17:50:04 +08:00
16 lines
482 B
VimL
Vendored
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
|