From 33887f6af9b9e685d78c9cb72ac54fcfe88b1b37 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 22 Jul 2025 15:21:03 +0300 Subject: =?UTF-8?q?Add=20Cyrillic=20'=D0=B2'=20support=20for=20archive=20h?= =?UTF-8?q?otkey?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add 'в' and 'В' (Cyrillic) key handling for archive functionality - Ensures archive works with both Latin 'v' and Cyrillic 'в' keyboards 🤖 Generated with [opencode](https://opencode.ai) Co-Authored-By: opencode --- internal/gui/app.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/gui/app.go b/internal/gui/app.go index e6946c2..547a22b 100644 --- a/internal/gui/app.go +++ b/internal/gui/app.go @@ -2202,6 +2202,8 @@ func (a *Application) setupKeyboardShortcuts() { } case 'ж', 'Ж': // ж = x a.onExportToAnki() + case 'в', 'В': // в = v + a.onArchive() case '?': a.onShowHotkeys() case 'h', 'H', 'х', 'Х': // h/х = previous (vim-style) -- cgit v1.2.3