From ab7df26dd71806cb80e65c3c212b474a04a61022 Mon Sep 17 00:00:00 2001 From: Nicolas VIVIEN Date: Wed, 25 Mar 2009 14:29:48 +0100 Subject: [PATCH] Add the option 'logstacktraces' to the ZSH completion script --- zsh/_bjavaloader | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/zsh/_bjavaloader b/zsh/_bjavaloader index f9fd80bc..395de813 100644 --- a/zsh/_bjavaloader +++ b/zsh/_bjavaloader @@ -15,9 +15,10 @@ _bjavaloader_commands=( 'cleareventlog:Clears the handheld event log' 'deviceinfo:Provides information on the handheld' 'dir:Lists modules on the handheld' + 'erase:Erase module from handheld' 'eventlog:Retrieves the handheld event log' 'load:Loads modules onto the handheld' - 'erase:Erase module from handheld' + 'logstacktraces:Dump the stack traces for all threads to the event log' 'save:Retrieves modules from the handheld' 'screenshot:Make a screenshot of handheld' 'settime:Sets the time on the handheld' @@ -97,6 +98,10 @@ case "$state" in '*:COD files:_path_files -g "*.cod(-.)"' && ret=0 ;; + logstacktraces) + _message 'no more arguments' && ret=0 + ;; + save) _message 'modules name from the handheld' && ret=0 ;; -- 2.11.4.GIT