From 9199f6c84a862aef5352b39d5ab2166d24f5afb9 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 c31a8ca0859..8b612aaaf90 100644 --- a/completions/make +++ b/completions/make @@ -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