From a597ea52912293427bef24c3753309859a552a08 Mon Sep 17 00:00:00 2001 From: swanadiva Date: Wed, 24 Jun 2026 14:11:17 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20rename=20SFTP=20footer=20C:copy=20?= =?UTF-8?q?=E2=86=92=20C:transfer=20for=20clarity?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/tui/sftp_browser_tab.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/tui/sftp_browser_tab.go b/pkg/tui/sftp_browser_tab.go index e0d96c1..808760b 100644 --- a/pkg/tui/sftp_browser_tab.go +++ b/pkg/tui/sftp_browser_tab.go @@ -655,7 +655,7 @@ func (t *SFTPBrowserTab) View() string { } // Footer (wrapped to terminal width) - footerText := "Ctrl+Tab:switch Ctrl+Q:close Tab:pane ↑↓:nav Enter/→:open ←/Backspace:up /:filter C:copy D:delete N:mkdir R:refresh Esc:close" + footerText := "Ctrl+Tab:switch Ctrl+Q:close Tab:pane ↑↓:nav Enter/→:open ←/Backspace:up /:filter C:transfer D:delete N:mkdir R:refresh Esc:close" footerWrapped := wrapFooter(footerText, t.width) for _, line := range strings.Split(footerWrapped, "\n") { b.WriteString("\n" + lipgloss.PlaceHorizontal(t.width, lipgloss.Center, SubtitleStyle.Render(line)))