From a3369465dc1ee3df56e2425af9fb6e0627cffeac Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 5 Aug 2023 10:11:15 +0530 Subject: [PATCH] Remove unused code --- tools/cli/completion-main.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tools/cli/completion-main.go b/tools/cli/completion-main.go index 07c3cac32..dd72b306c 100644 --- a/tools/cli/completion-main.go +++ b/tools/cli/completion-main.go @@ -8,18 +8,8 @@ import ( "io" "os" "strings" - - "kitty/tools/tty" ) -func debug(args ...any) { - tty.DebugPrintln(args...) -} - -func debugf(format string, args ...any) { - debug(fmt.Sprintf(format, args...)) -} - func json_input_parser(data []byte, shell_state map[string]string) ([][]string, error) { ans := make([][]string, 0, 32) err := json.Unmarshal(data, &ans)