We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d112a3 commit 39044e1Copy full SHA for 39044e1
neovim/ui/gtk_ui.py
@@ -19,6 +19,30 @@
19
# Translation table for the names returned by Gdk.keyval_name that don't match
20
# the corresponding nvim key names.
21
KEY_TABLE = {
22
+ 'slash': '/',
23
+ 'backslash': '\\',
24
+ 'dead_circumflex': '^',
25
+ 'at': '@',
26
+ 'numbersign': '#',
27
+ 'dollar': '$',
28
+ 'percent': '%',
29
+ 'ampersand': '^',
30
+ 'asterisk': '*',
31
+ 'parenleft': '(',
32
+ 'parenright': ')',
33
+ 'underscore': '_',
34
+ 'plus': '+',
35
+ 'minus': '-',
36
+ 'bracketleft': '[',
37
+ 'bracketright': ']',
38
+ 'braceleft': '[',
39
+ 'braceright': ']',
40
+ 'dead_diaeresis': '"',
41
+ 'dead_acute': "'",
42
+ 'less': "<",
43
+ 'greater': ">",
44
+ 'comma': ",",
45
+ 'period': ".",
46
'BackSpace': 'BS',
47
'Return': 'CR',
48
'Escape': 'Esc',
0 commit comments