From 53f95f91cc4bd95daadf52fc4d6a68908bc679ad Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 16 Nov 2025 11:01:09 +0900 Subject: [PATCH] Update src/options.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options.go b/src/options.go index 5414f661..88f060c3 100644 --- a/src/options.go +++ b/src/options.go @@ -1217,7 +1217,7 @@ func parseKeyChords(str string, message string) (map[tui.Event]string, []tui.Eve default: runes := []rune(key) if len(key) == 10 && strings.HasPrefix(lkey, "ctrl-alt-") && isAlphabet(lkey[9]) { - r := rune(key[9]) + r := rune(lkey[9]) evt := tui.CtrlAltKey(r) if r == 'h' && !util.IsWindows() { evt = tui.CtrlAltBackspace.AsEvent()