glob return results without removing wildignore matches

Ignore 'wildignore' and 'suffixes' when globbing for themes and extensions.

This can be a problem when you have a wildignore containing *.vim.

closes #2375
This commit is contained in:
Vincenzo Di Massa
2021-05-02 22:52:45 +02:00
committed by Christian Brabandt
parent 76e42284e9
commit f7cbf8c429
3 changed files with 3 additions and 3 deletions

View File

@@ -239,7 +239,7 @@ endfu
function! s:airline_extensions()
let loaded = airline#extensions#get_loaded_extensions()
let files = split(globpath(&rtp, "autoload/airline/extensions/*.vim"), "\n")
let files = split(globpath(&rtp, 'autoload/airline/extensions/*.vim', 1), "\n")
call map(files, 'fnamemodify(v:val, ":t:r")')
if empty(files)
echo "No extensions loaded"