@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Support "control" and "return/enter" in the remarkup rule for keystrokes

Summary: These characters are missing support in `{key ...}` but are reasonable to include.

Test Plan: {F8302969}

Differential Revision: https://secure.phabricator.com/D21508

+16
+16
src/infrastructure/markup/rule/PhabricatorKeyboardRemarkupRule.php
··· 62 62 ), 63 63 ), 64 64 array( 65 + 'name' => pht('Enter'), 66 + 'symbol' => "\xE2\x8F\x8E", 67 + 'aliases' => array( 68 + 'enter', 69 + 'return', 70 + ), 71 + ), 72 + array( 73 + 'name' => pht('Control'), 74 + 'symbol' => "\xE2\x8C\x83", 75 + 'aliases' => array( 76 + 'ctrl', 77 + 'control', 78 + ), 79 + ), 80 + array( 65 81 'name' => pht('Up'), 66 82 'symbol' => "\xE2\x86\x91", 67 83 'heavy' => "\xE2\xAC\x86",