File tree 3 files changed +7
-0
lines changed
3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,8 @@ def convert_key(text, file):
118
118
[]
119
119
])
120
120
121
+ add_comment_to (display , 'Meta' , 'This is often what <kbd>Super</kbd> on Linux translates to.' )
122
+
121
123
emit_enum_entries (display , file )
122
124
print ("}" , file = file )
123
125
@@ -247,6 +249,8 @@ def convert_code(text, file):
247
249
248
250
add_comment_to (display , 'Backquote' , 'This is also called a backtick or grave.' )
249
251
add_comment_to (display , 'Quote' , 'This is also called an apostrophe.' )
252
+ add_comment_to (display , 'MetaLeft' , 'This is often what the left <kbd>Super</kbd> on Linux translates to.' )
253
+ add_comment_to (display , 'MetaRight' , 'This is often what the right <kbd>Super</kbd> on Linux translates to.' )
250
254
251
255
add_alternative_for (display , 'MetaLeft' , 'OSLeft' )
252
256
add_alternative_for (display , 'MetaRight' , 'OSRight' )
Original file line number Diff line number Diff line change @@ -153,8 +153,10 @@ pub enum Code {
153
153
/// <kbd>Enter</kbd> or <kbd>↵</kbd>. Labelled <kbd>Return</kbd> on Apple keyboards.
154
154
Enter ,
155
155
/// The Windows, <kbd>⌘</kbd>, <kbd>Command</kbd> or other OS symbol key.
156
+ /// This is often what the left <kbd>Super</kbd> on Linux translates to.
156
157
MetaLeft ,
157
158
/// The Windows, <kbd>⌘</kbd>, <kbd>Command</kbd> or other OS symbol key.
159
+ /// This is often what the right <kbd>Super</kbd> on Linux translates to.
158
160
MetaRight ,
159
161
/// <kbd>Shift</kbd> or <kbd>⇧</kbd>
160
162
ShiftLeft ,
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ pub enum Key {
44
44
FnLock ,
45
45
/// The <kbd>Meta</kbd> key, to enable meta modifier function for interpreting concurrent or subsequent keyboard input.
46
46
/// This key value is used for the <q>Windows Logo</q> key and the Apple <kbd>Command</kbd> or <kbd>⌘</kbd> key.
47
+ /// This is often what <kbd>Super</kbd> on Linux translates to.
47
48
Meta ,
48
49
/// The <kbd>NumLock</kbd> or Number Lock key, to toggle numpad mode function for interpreting subsequent keyboard input.
49
50
NumLock ,
You can’t perform that action at this time.
0 commit comments