From 9619571dd3d0c7642f22346c9993c1bf0d0973d0 Mon Sep 17 00:00:00 2001 From: Daniel M German Date: Sun, 22 Mar 2026 17:59:42 -0700 Subject: [PATCH] Command palette: fix gofmt struct field alignment in tests --- kittens/command_palette/main_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kittens/command_palette/main_test.go b/kittens/command_palette/main_test.go index 66d59f280..be2293d29 100644 --- a/kittens/command_palette/main_test.go +++ b/kittens/command_palette/main_test.go @@ -84,18 +84,18 @@ func newTestHandler() *Handler { addBinding("mw", "Miscellaneous", Binding{ Key: "left", Action: "neighboring_window", ActionDisplay: "neighboring_window left", - Definition: "neighboring_window left", Help: "Focus neighbor window", + Definition: "neighboring_window left", Help: "Focus neighbor window", }). addBinding("mw", "Miscellaneous", testBinding("esc", "pop_keyboard_mode", "Pop keyboard mode")). addMouse(Binding{ Key: "left press ungrabbed", Action: "mouse_selection", ActionDisplay: "mouse_selection normal", - Definition: "mouse_selection normal", + Definition: "mouse_selection normal", }). addMouse(Binding{ Key: "ctrl+left press ungrabbed", Action: "mouse_selection", ActionDisplay: "mouse_selection rectangle", - Definition: "mouse_selection rectangle", + Definition: "mouse_selection rectangle", }). build() } @@ -1370,7 +1370,7 @@ func TestQueryRankingCrossColumnVsCategoryOnly(t *testing.T) { addBinding("", "Scroll buffer", Binding{ Key: "ctrl+l", Action: "clear_terminal", ActionDisplay: "clear_terminal reset active", - Definition: "clear_terminal reset active", Help: "Clear screen", + Definition: "clear_terminal reset active", Help: "Clear screen", }). build()