summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--config/bindings.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/config/bindings.go b/config/bindings.go
index 084ed58..39b50ce 100644
--- a/config/bindings.go
+++ b/config/bindings.go
@@ -50,7 +50,12 @@ func (bindings *KeyBindings) GetBinding(
 			continue
 		}
 		for i, stroke := range input {
-			if stroke != binding.Input[i] {
+			if stroke.Key != binding.Input[i].Key {
+				goto next
+			}
+			if stroke.Key == tcell.KeyRune &&
+				stroke.Rune != binding.Input[i].Rune {
+
 				goto next
 			}
 		}
ous revision' href='/akspecs/ranger/blame/INSTALL?h=v1.6.1&id=fff320285cfd4844547afac4056b788b2db3a2ee'>^
582f3519 ^

f51bd48a ^

7582555b ^


b06433bc ^

582f3519 ^
b06433bc ^
3edc9f86 ^
b06433bc ^
7582555b ^
84c49ab7 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23