From a133ba86f53a298bbc277db64b2e32693bd67120 Mon Sep 17 00:00:00 2001 From: Koichi Murase Date: Sun, 20 Jun 2021 09:32:57 +0900 Subject: [PATCH] fix(make): do not strip dirnames for COMP_TYPE=37 (%) --- completions/make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/completions/make b/completions/make index 32e112c189e..c96d8fc9d18 100644 --- a/completions/make +++ b/completions/make @@ -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