We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f937ffc commit 4da46e4Copy full SHA for 4da46e4
src/shelloracle/cli/config/__init__.py
@@ -1,10 +1,12 @@
1
import click
2
3
+from shelloracle.cli.config.edit import edit
4
from shelloracle.cli.config.init import init
5
6
7
@click.group()
8
def config(): ...
9
10
11
+config.add_command(edit)
12
config.add_command(init)
src/shelloracle/cli/config/edit.py
@@ -0,0 +1,7 @@
+import click
+
+@click.command()
+def edit():
+ """Edit shelloracle configuration."""
+ click.edit(filename='/tmp/test')
0 commit comments