mirror of
https://github.com/Hopiu/micro.git
synced 2026-04-02 06:10:33 +00:00
Fix typo
This commit is contained in:
parent
5cc66cef42
commit
c1d08a6dc0
1 changed files with 1 additions and 1 deletions
|
|
@ -266,7 +266,7 @@ modSearch:
|
|||
case strings.HasPrefix(k, "-"):
|
||||
// We optionally support dashes between modifiers
|
||||
k = k[1:]
|
||||
case strings.HasPrefix(k, "Ctrl") && !k == "CtrlH":
|
||||
case strings.HasPrefix(k, "Ctrl") && k != "CtrlH":
|
||||
// CtrlH technically does not have a 'Ctrl' modifier because it is really backspace
|
||||
k = k[4:]
|
||||
modifiers |= tcell.ModCtrl
|
||||
|
|
|
|||
Loading…
Reference in a new issue