From 787df278549b8e2a970fe3a2a4cc08e20ff65188 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Tue, 14 Aug 2012 09:04:55 +0000 Subject: ChangeLog-5.0 should be ChangeLog-4.3, Bart says --- Completion/Unix/Command/_perforce | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'Completion') diff --git a/Completion/Unix/Command/_perforce b/Completion/Unix/Command/_perforce index 2c1365a79..78f6cd71e 100644 --- a/Completion/Unix/Command/_perforce +++ b/Completion/Unix/Command/_perforce @@ -474,8 +474,17 @@ _perforce_gen_cmd_list() { # Ignore blank lines and the heading line beginning `Perforce...' # Just gets run once, then cached, so don't bother optimising # this to a grossly unreadable parameter substitution. + _perforce_cmd_list=() _perforce_call_p4 help-commands help commands | while read -A hline; do - (( ${#hline} < 2 )) && continue + if (( ${#hline} < 2 )); then + if (( ${#_perforce_cmd_list} )); then + # Ignore comments after the main list of commands, separate by blank + # line. + break + else + continue + fi + fi [[ $hline[1] = (#i)perforce ]] && continue _perforce_cmd_list+=("${hline[1]}:${hline[2,-1]}") done -- cgit 1.4.1