From 50b5360cfef4b16c7a771e665fcc8b271813cbc0 Mon Sep 17 00:00:00 2001 From: Cory Bennett Date: Sun, 1 Apr 2018 12:04:52 -0700 Subject: [PATCH] Updated Usage --- README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 127f749..207372a 100644 --- a/README.md +++ b/README.md @@ -444,6 +444,19 @@ export GPG_TTY=$(tty) ## Usage + +#### Setting up TAB completion + +Since go-jira is build with the "kingpin" golang command line library we supports bash/zsh shell completion automatically: + + * + +For example, in bash, adding something along the lines of: + + `eval "$(jira --completion-script-bash)"` + +to your bashrc, or .profile (assuming go-jira binary is already in your path) will cause jira to offer tab completion behavior. + ``` usage: jira [] [ ...] @@ -519,16 +532,3 @@ Commands: worklog list: Prints the worklog data for given issue ``` - -#### Setting up TAB completion - -Since go-jira is build with the "kingpin" golang command line library we supports bash/zsh shell completion automatically: - - * - -For example, in bash, adding something along the lines of: - - `eval "$(jira --completion-script-bash)"` - -to your bashrc, or .profile (assuming go-jira binary is already in your path) will cause jira to offer tab completion behavior. -