1
0
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:
jdhao 2021-12-30 23:39:03 +08:00
parent 08818dbf01
commit e82b450464

View File

@ -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.
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
" Edit all files matching the given patterns.