@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.

Allow autocomplete to activate after ">", ":" or "!"

Summary: Ref T10163. This allows activation in blockquotes or after `NOTE:`, for consistency.

Test Plan: Typed `>@dog`, etc., got autocomplete.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10163

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

+11 -8
+8 -8
resources/celerity/map.php
··· 507 507 'rsrc/js/phui/behavior-phui-object-box-tabs.js' => '2bfa2836', 508 508 'rsrc/js/phuix/PHUIXActionListView.js' => 'b5c256b8', 509 509 'rsrc/js/phuix/PHUIXActionView.js' => '8cf6d262', 510 - 'rsrc/js/phuix/PHUIXAutocomplete.js' => '3dfff01f', 510 + 'rsrc/js/phuix/PHUIXAutocomplete.js' => '3601bdd1', 511 511 'rsrc/js/phuix/PHUIXDropdownMenu.js' => 'bd4c8dca', 512 512 'rsrc/js/phuix/PHUIXFormControl.js' => '8fba1997', 513 513 'rsrc/js/phuix/PHUIXIconView.js' => 'bff6884b', ··· 836 836 'phui-workpanel-view-css' => 'adec7699', 837 837 'phuix-action-list-view' => 'b5c256b8', 838 838 'phuix-action-view' => '8cf6d262', 839 - 'phuix-autocomplete' => '3dfff01f', 839 + 'phuix-autocomplete' => '3601bdd1', 840 840 'phuix-dropdown-menu' => 'bd4c8dca', 841 841 'phuix-form-control-view' => '8fba1997', 842 842 'phuix-icon-view' => 'bff6884b', ··· 1064 1064 'javelin-vector', 1065 1065 'phuix-autocomplete', 1066 1066 ), 1067 + '3601bdd1' => array( 1068 + 'javelin-install', 1069 + 'javelin-dom', 1070 + 'phuix-icon-view', 1071 + 'phabricator-prefab', 1072 + ), 1067 1073 '3ab51e2c' => array( 1068 1074 'javelin-behavior', 1069 1075 'javelin-behavior-device', ··· 1079 1085 'javelin-workflow', 1080 1086 'javelin-util', 1081 1087 'javelin-uri', 1082 - ), 1083 - '3dfff01f' => array( 1084 - 'javelin-install', 1085 - 'javelin-dom', 1086 - 'phuix-icon-view', 1087 - 'phabricator-prefab', 1088 1088 ), 1089 1089 '3ee3408b' => array( 1090 1090 'javelin-behavior',
+3
webroot/rsrc/js/phuix/PHUIXAutocomplete.js
··· 111 111 case '-': // Might be an unnumbered list. 112 112 case '.': // Might be a numbered list. 113 113 case '|': // Might be a table cell. 114 + case '>': // Might be a blockquote. 115 + case '!': // Might be a blockquote attribution line. 116 + case ':': // Might be a "NOTE:". 114 117 // We'll let these autocomplete. 115 118 break; 116 119 default: