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 d81790e commit 509a78dCopy full SHA for 509a78d
src/hatch/cli/config/__init__.py
@@ -8,6 +8,13 @@ def config():
8
pass
9
10
11
+@config.command(short_help='Open the config file in your configured terminal editor')
12
+@click.pass_obj
13
+def edit(app):
14
+ """Open the config file in your configured terminal editor."""
15
+ click.edit(filename=str(app.config_file.path))
16
+
17
18
@config.command(short_help='Open the config location in your file manager')
19
@click.pass_obj
20
def explore(app):
0 commit comments