From 3db06a29151e0b845c8980906ec54c8a696cdf0c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 22 Feb 2026 16:44:57 +0530 Subject: [PATCH] More debug prints --- kittens/choose_files/save-file.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/kittens/choose_files/save-file.go b/kittens/choose_files/save-file.go index e94319494..42c6480c7 100644 --- a/kittens/choose_files/save-file.go +++ b/kittens/choose_files/save-file.go @@ -24,7 +24,6 @@ func FilePromptCompleter(getcwd func() string) func(string, string) *cli.Complet return ans } } - debugprintln(1111111, getcwd()) return func(before_cursor, after_cursor string) (ans *cli.Completions) { defer func() { if r := recover(); r != nil { @@ -40,7 +39,6 @@ func FilePromptCompleter(getcwd func() string) func(string, string) *cli.Complet prefix = d + utils.IfElse(strings.HasSuffix(d, string(os.PathSeparator)), "", string(os.PathSeparator)) } dir := "" - debugprintln(2222222, getcwd()) if path == "" { path = getcwd() dir = path