##// END OF EJS Templates
first shot at adding list of key symbols, need to format nicely
Andrew Dawes -
Show More
@@ -82,7 +82,7 b' define(['
82 'tab':'⇥',
82 'tab':'⇥',
83 'backtab':'⇤',
83 'backtab':'⇤',
84 'capslock':'⇪',
84 'capslock':'⇪',
85 'esc':'',
85 'esc':'esc',
86 'ctrl':'⌃',
86 'ctrl':'⌃',
87 'enter':'↩',
87 'enter':'↩',
88 'pageup':'⇞',
88 'pageup':'⇞',
@@ -178,6 +178,23 b' define(['
178 'border. <b>Command mode</b> binds the keyboard to notebook level actions '+
178 'border. <b>Command mode</b> binds the keyboard to notebook level actions '+
179 'and is indicated by a grey cell border.'
179 'and is indicated by a grey cell border.'
180 );
180 );
181 if (platform === 'MacOS') {
182 doc.append(
183 'Keys'+
184 '⇥ Tab forward'+
185 '⇤ Tab back'+
186 '⇪ Capslock'+
187 '⇧ Shift'+
188 '⌃ Control'+
189 '⌥ Option'+
190 ' Apple symbol'+
191 '⌘ Command'+
192 '␣ Space'+
193 '↩ Return'+
194 '⌫ Delete back'+
195 '⌦ Delete forward'
196 );
197 }
181 element.append(doc);
198 element.append(doc);
182
199
183 // Command mode
200 // Command mode
General Comments 0
You need to be logged in to leave comments. Login now