1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

feat: make :edit command supports file glob patterns

This commit is contained in:
jdhao
2021-08-13 23:27:17 +08:00
parent f9feafa5bb
commit fa203cf3b8
2 changed files with 12 additions and 0 deletions

View File

@@ -176,3 +176,12 @@ function! utils#CaptureCommandOutput(command) abort
execute a:command
redir END
endfunction
" Edit all files matching the given patterns.
function! utils#MultiEdit(patterns) abort
for p in a:patterns
for f in glob(p, 0, 1)
execute 'edit ' . f
endfor
endfor
endfunction