Start work on porting icat to Go

This commit is contained in:
Kovid Goyal
2022-12-19 15:34:48 +05:30
parent aab81c2d32
commit 7a1140cd03
5 changed files with 129 additions and 6 deletions

View File

@@ -9,6 +9,7 @@ import (
"kitty/tools/cmd/at"
"kitty/tools/cmd/clipboard"
"kitty/tools/cmd/edit_in_kitty"
"kitty/tools/cmd/icat"
"kitty/tools/cmd/update_self"
"kitty/tools/tui"
)
@@ -26,6 +27,8 @@ func KittyToolEntryPoints(root *cli.Command) {
edit_in_kitty.EntryPoint(root)
// clipboard
clipboard.EntryPoint(root)
// icat
icat.EntryPoint(root)
// __hold_till_enter__
root.AddSubCommand(&cli.Command{
Name: "__hold_till_enter__",