From 5862e78409d930436100ca02096ca0315c70f615 Mon Sep 17 00:00:00 2001 From: Zack Dever Date: Fri, 3 Jun 2016 12:06:39 -0700 Subject: [PATCH] Remove 'swank' and add missing commands to bash completion. Added: change, do, plugin, release, show-profiles, update-in, vcs --- bash_completion.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash_completion.bash b/bash_completion.bash index 26a5e5ea..84e2d746 100644 --- a/bash_completion.bash +++ b/bash_completion.bash @@ -3,10 +3,10 @@ _lein_completion() { COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" - tasks="check classpath clean compile deploy deps help install jar javac new pom repl retest run search swank test trampoline uberjar upgrade version with-profile" + tasks="change check classpath clean compile deploy deps do help install jar javac new plugin pom release repl retest run search show-profiles test trampoline uberjar update-in upgrade vcs version with-profile" case "${prev}" in - check | classpath | clean | deploy | deps | install | jar | javac | new | pom | repl | swank | uberjar | version) + change | check | classpath | clean | deploy | deps | do | install | jar | javac | new | plugin | pom | release | repl | show-profiles | uberjar | update-in | vcs | version) COMPREPLY=() ;; help)