mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:20:06 +08:00
7 lines
152 B
VimL
7 lines
152 B
VimL
|
function! util#redir_execute(command)
|
||
|
redir => output
|
||
|
silent execute a:command
|
||
|
redir END
|
||
|
return substitute(output, '^\n', '\1', '')
|
||
|
endfunction
|