mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
split command output to list of string and set the buffer
This commit is contained in:
parent
08818dbf01
commit
e82b450464
@ -181,7 +181,8 @@ function! utils#CaptureCommandOutput(command) abort
|
|||||||
"create a scratch buffer for dumping the text, ref: https://vi.stackexchange.com/a/11311/15292.
|
"create a scratch buffer for dumping the text, ref: https://vi.stackexchange.com/a/11311/15292.
|
||||||
tabnew | setlocal buftype=nofile bufhidden=wipe nobuflisted noswapfile
|
tabnew | setlocal buftype=nofile bufhidden=wipe nobuflisted noswapfile
|
||||||
|
|
||||||
put! m
|
let l:lines = split(@m, '\n')
|
||||||
|
call nvim_buf_set_lines(0, 0, 0, 0, l:lines)
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
" Edit all files matching the given patterns.
|
" Edit all files matching the given patterns.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user