From 58ad8de649733df51871488b1e8293ce7bf52fd7 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 (%) and 42 (*) --- completions/make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/completions/make b/completions/make index 50fdcf2f76a..3579802dc5f 100644 --- a/completions/make +++ b/completions/make @@ -162,7 +162,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 && COMP_TYPE != 42)); then mode=-d # display-only mode fi