Start work on implementing edit-in-kitty in kitty-tool

This commit is contained in:
Kovid Goyal
2022-11-17 16:58:33 +05:30
parent d2dabc7d57
commit 0af48a4d05
6 changed files with 340 additions and 8 deletions

View File

@@ -6,6 +6,7 @@ import (
"fmt"
"kitty/tools/cli"
"kitty/tools/cmd/at"
"kitty/tools/cmd/edit_in_kitty"
"kitty/tools/cmd/update_self"
)
@@ -18,4 +19,6 @@ func KittyToolEntryPoints(root *cli.Command) {
at.EntryPoint(root)
// update-self
update_self.EntryPoint(root)
// edit-in-kitty
edit_in_kitty.EntryPoint(root)
}