summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAliou Diallo <code@aliou.me>2018-05-08 07:56:19 +0200
committerAliou Diallo <code@aliou.me>2018-05-10 16:15:08 +0200
commit199fcd48ac5333c6fab1ac92b802d4f23d17e491 (patch)
treebc3dd86a1a0daf42476058756ba69bfb151e4314
parent726a768464d3e42869088599cf1bd049f7a751df (diff)
downloadale-199fcd48ac5333c6fab1ac92b802d4f23d17e491.zip
Use the command line to filter ALEFix's command line completion.
-rw-r--r--autoload/ale/fix/registry.vim2
-rw-r--r--test/fix/test_ale_fix_completion_filter.vader14
2 files changed, 15 insertions, 1 deletions
diff --git a/autoload/ale/fix/registry.vim b/autoload/ale/fix/registry.vim
index 7e45e6ad..c00cbdee 100644
--- a/autoload/ale/fix/registry.vim
+++ b/autoload/ale/fix/registry.vim
@@ -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.
diff --git a/test/fix/test_ale_fix_completion_filter.vader b/test/fix/test_ale_fix_completion_filter.vader
new file mode 100644
index 00000000..536b7138
--- /dev/null
+++ b/test/fix/test_ale_fix_completion_filter.vader
@@ -0,0 +1,14 @@
+Before:
+ call ale#fix#registry#Clear()
+ call ale#test#SetFilename('test.js')
+ call ale#fix#registry#Add('prettier', '', ['javascript'], 'prettier')
+ call ale#fix#registry#Add('eslint', '', ['javascript'], 'eslint')
+ setfiletype javascript
+
+Execute(completeFixers returns all of the applicable fixers without an arglead):
+ AssertEqual ['eslint', 'prettier'],
+ \ ale#fix#registry#CompleteFixers('', 'ALEFix ', 7)
+
+Execute(completeFixers returns all of the applicable fixers without an arglead):
+ AssertEqual ['prettier'],
+ \ ale#fix#registry#CompleteFixers('pre', 'ALEFix ', 10)