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

Cancel autocomplete on "{" and "}"

Summary: Ref T10163. These are almost certainly not username/project characters, and are fairly likely to be `@{...}` Diviner references.

Test Plan: Typed `@{...`, no more autocomplete.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10163

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

+1 -1
+1 -1
webroot/rsrc/js/phuix/PHUIXAutocomplete.js
··· 333 333 _getCancelCharacters: function() { 334 334 // The "." character does not cancel because of projects named 335 335 // "node.js" or "blog.mycompany.com". 336 - return ['#', '@', ',', '!', '?']; 336 + return ['#', '@', ',', '!', '?', '{', '}']; 337 337 }, 338 338 339 339 _getTerminators: function() {