summaryrefslogtreecommitdiffstats
path: root/docs/testing/developer/design/cli.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/testing/developer/design/cli.rst')
-rw-r--r--docs/testing/developer/design/cli.rst24
1 files changed, 0 insertions, 24 deletions
diff --git a/docs/testing/developer/design/cli.rst b/docs/testing/developer/design/cli.rst
deleted file mode 100644
index 487bdec5..00000000
--- a/docs/testing/developer/design/cli.rst
+++ /dev/null
@@ -1,24 +0,0 @@
-- Which framework has been used and why
-- How to extend to more commands
-
-Original content from DEVELOP.md
-
- ### CLI
-
- Click currently supports Bash completion. The prerequisite for this is that the program
- needs to be installed correctly. To install Qtip, execute the following command in root
- folder of Qtip:
-
- ```
- cd <project root>
- pip install -e .
- ```
-
- Once the installation has been completed successfully, the following needs to be added to
- the `.bashrc` file:
-
- ```
- eval "$(_QTIP_COMPLETE=source qtip)"
- ```
-
- The above would activate command completion for Qtip.