Use the command line to filter ALEFix's command line completion.

This commit is contained in:
Aliou Diallo
2018-05-08 07:56:19 +02:00
parent 726a768464
commit 199fcd48ac
2 changed files with 15 additions and 1 deletions

View File

@@ -327,7 +327,7 @@ endfunction
" Function that returns autocomplete candidates for ALEFix command
function! ale#fix#registry#CompleteFixers(ArgLead, CmdLine, CursorPos) abort
return ale#fix#registry#GetApplicableFixers(&filetype)
return filter(ale#fix#registry#GetApplicableFixers(&filetype), 'v:val =~? a:ArgLead')
endfunction
" Suggest functions to use from the registry.