From e09ce1304f970ac87edbfa48b91066a0b8ddc7e5 Mon Sep 17 00:00:00 2001 From: Lin Jen-Shin Date: Sun, 27 Oct 2013 19:36:59 +0800 Subject: [PATCH] Show rake task descriptions along with the tasks. --- plugins/rake/completions/rake.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/rake/completions/rake.fish b/plugins/rake/completions/rake.fish index 437ac34..8896ae1 100644 --- a/plugins/rake/completions/rake.fish +++ b/plugins/rake/completions/rake.fish @@ -1,6 +1,6 @@ # fish completion for rake function __fish_rake_tasks - rake -P ^/dev/null | grep rake | cut -c 6- + rake -T ^/dev/null | awk '{print $2"\t"substr($0, index($0, $4))}' end ### commands