Skip to content

Commit

Permalink
fix(make): disable the display-only mode also for COMP_TYPE=42
Browse files Browse the repository at this point in the history
  • Loading branch information
akinomyoga committed Dec 17, 2022
1 parent e204c78 commit 04aa820
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion completions/make
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 && COMP_TYPE != 37)); then
if ((COMP_TYPE != 9 && COMP_TYPE != 37 && COMP_TYPE != 42)); then
mode=-d # display-only mode
fi

Expand Down

0 comments on commit 04aa820

Please sign in to comment.