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 Dec 17, 2022
1 parent dd81e6c commit 9199f6c
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 @@ -160,7 +160,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 9199f6c

Please sign in to comment.