From fbd13614a5109cf6bd595255a099baf1b5edd634 Mon Sep 17 00:00:00 2001 From: Bakhtiyar Farayev Date: Tue, 5 Nov 2019 10:30:01 +1100 Subject: [PATCH] Fix typo and re-organize the folder structure for task completion --- completion/{ => bash}/task.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename completion/{ => bash}/task.bash (92%) diff --git a/completion/task.bash b/completion/bash/task.bash similarity index 92% rename from completion/task.bash rename to completion/bash/task.bash index 88820076..1e212979 100644 --- a/completion/task.bash +++ b/completion/bash/task.bash @@ -3,7 +3,7 @@ _task_completion() local scripts; local curr_arg; - # Remove colon from work breaks + # Remove colon from word breaks COMP_WORDBREAKS=${COMP_WORDBREAKS//:} scripts=$(task -l | sed '1d' | sed 's/^\* //' | awk '{ print $1 }');