From 5cbcb42cd3f010cf45e2d6ba01d62be6f23321fa Mon Sep 17 00:00:00 2001 From: Jiashuo Li Date: Wed, 15 Jan 2020 10:52:57 +0800 Subject: [PATCH] [Core] Support filename and environment variable completion (#11817) --- az.completion | 2 +- src/azure-cli/HISTORY.rst | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/az.completion b/az.completion index 5a5987093..53033b6ed 100644 --- a/az.completion +++ b/az.completion @@ -18,4 +18,4 @@ _python_argcomplete() { compopt -o nospace fi } -complete -o nospace -F _python_argcomplete "az" \ No newline at end of file +complete -o nospace -o default -o bashdefault -F _python_argcomplete "az" \ No newline at end of file diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index ccac2f211..955ce49d9 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -7,6 +7,10 @@ Release History * Support app creation/update with the new sku name ST0, ST1, ST2. +**Misc** + +* Fix #6371: Support filename and environment variable completion in Bash + 2.0.80 ++++++