From 5684fbe2b0afc7e0bb3fb297b19b29f9d239fd9d Mon Sep 17 00:00:00 2001 From: magnus2142 <magnus.bredeli@hotmail.com> Date: Thu, 28 Apr 2022 14:43:06 +0200 Subject: [PATCH] removed shell completion feature for now, it is too unstable --- README.md | 4 ++-- bbcli/cli.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3c49cf8..5d33de8 100644 --- a/README.md +++ b/README.md @@ -108,14 +108,14 @@ Test if the installation was successful by running ```$ bb --version``` command. $ bb --version bb, version 0.1.0 ``` - +<!-- **Shell completion:** The CLI also supports shell completion with TAB, but is currently only comaptible with bash, zsh and fish. To activate this, execute the command: ```Shell bb activate-shell-completion {YOUR_SHELL} ``` -This feauture is still unstable and if you encounter any problems, please check the [Click shell completion help page](https://click.palletsprojects.com/en/8.1.x/shell-completion/). +This feauture is still unstable and if you encounter any problems, please check the [Click shell completion help page](https://click.palletsprojects.com/en/8.1.x/shell-completion/). --> ## Usage diff --git a/bbcli/cli.py b/bbcli/cli.py index b76770c..a1755e3 100644 --- a/bbcli/cli.py +++ b/bbcli/cli.py @@ -94,7 +94,7 @@ def activate_shell_completion(shell: str): click.echo('Shell not recognized, or CLI shell completion is not compatible with your Shell') -entry_point.add_command(activate_shell_completion) +# entry_point.add_command(activate_shell_completion) """ COURSE COMMANDS ENTRY POINT -- GitLab