Start work on porting the SSH kitten to Go

This commit is contained in:
Kovid Goyal
2023-02-16 21:18:19 +05:30
parent 3d3bfe6c75
commit 6f63d9c5d4
4 changed files with 36 additions and 5 deletions

View File

@@ -10,6 +10,7 @@ import (
"kitty/tools/cmd/clipboard"
"kitty/tools/cmd/edit_in_kitty"
"kitty/tools/cmd/icat"
"kitty/tools/cmd/ssh"
"kitty/tools/cmd/unicode_input"
"kitty/tools/cmd/update_self"
"kitty/tools/tui"
@@ -30,6 +31,8 @@ func KittyToolEntryPoints(root *cli.Command) {
clipboard.EntryPoint(root)
// icat
icat.EntryPoint(root)
// ssh
ssh.EntryPoint(root)
// unicode_input
unicode_input.EntryPoint(root)
// __hold_till_enter__