Add support for VI editing mode in the terminal.

This commit is contained in:
Paul Gauthier 2024-06-10 21:09:46 -07:00
parent eae9a1e065
commit 196c1314eb
2 changed files with 8 additions and 0 deletions

View file

@ -21,6 +21,11 @@ def get_parser(default_config_files, git_root):
)
group = parser.add_argument_group("Main")
group.add_argument(
"--vim",
action="store_true",
help="Use VI editing mode in the terminal (default: False)",
default=False,
)
"files",
metavar="FILE",
nargs="*",