Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/markup/rule/PhabricatorKeyboardRemarkupRule.php
| Show First 20 Lines • Show All 56 Lines • ▼ Show 20 Lines | $special = array( | ||||
| 'name' => pht('Escape'), | 'name' => pht('Escape'), | ||||
| 'symbol' => "\xE2\x8E\x8B", | 'symbol' => "\xE2\x8E\x8B", | ||||
| 'aliases' => array( | 'aliases' => array( | ||||
| 'esc', | 'esc', | ||||
| 'escape', | 'escape', | ||||
| ), | ), | ||||
| ), | ), | ||||
| array( | array( | ||||
| 'name' => pht('Enter'), | |||||
| 'symbol' => "\xE2\x8F\x8E", | |||||
| 'aliases' => array( | |||||
| 'enter', | |||||
| 'return', | |||||
| ), | |||||
| ), | |||||
| array( | |||||
| 'name' => pht('Control'), | |||||
| 'symbol' => "\xE2\x8C\x83", | |||||
| 'aliases' => array( | |||||
| 'ctrl', | |||||
| 'control', | |||||
| ), | |||||
| ), | |||||
| array( | |||||
| 'name' => pht('Up'), | 'name' => pht('Up'), | ||||
| 'symbol' => "\xE2\x86\x91", | 'symbol' => "\xE2\x86\x91", | ||||
| 'heavy' => "\xE2\xAC\x86", | 'heavy' => "\xE2\xAC\x86", | ||||
| 'aliases' => array( | 'aliases' => array( | ||||
| 'up', | 'up', | ||||
| 'arrow-up', | 'arrow-up', | ||||
| 'up-arrow', | 'up-arrow', | ||||
| 'north', | 'north', | ||||
| ▲ Show 20 Lines • Show All 184 Lines • Show Last 20 Lines | |||||