Skip to content

Commit

Permalink
fix(make): do not strip dirnames for COMP_TYPE=37 (%)
Browse files Browse the repository at this point in the history
  • Loading branch information
akinomyoga committed Feb 24, 2022
1 parent bdf33a7 commit 0a114ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion completions/make
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ _make()
# recognise that possible completions are only going to be displayed
# so only the base name is shown
local mode=--
if ((COMP_TYPE != 9)); then
if ((COMP_TYPE != 9 && COMP_TYPE != 37)); then
mode=-d # display-only mode
fi

Expand Down

0 comments on commit 0a114ab

Please sign in to comment.