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

Add "idea://" to the upstream editor whitelist

Summary: This supports the IntelliJ IDEA editor.

Test Plan:
- Looked at the editor settings panel, saw "idea://".
- Set my editor pattern to "idea://a?b".
- (Did not actually install IntelliJ IDEA.)

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

+4
+3
src/applications/config/option/PhabricatorSecurityConfigOptions.php
··· 213 213 214 214 // This handler is for Visual Studio Code. 215 215 'vscode' => true, 216 + 217 + // This is for IntelliJ IDEA. 218 + 'idea' => true, 216 219 )) 217 220 ->setSummary(pht('Whitelists editor protocols for "Open in Editor".')) 218 221 ->setDescription(
+1
src/applications/settings/panel/PhabricatorExternalEditorSettingsPanel.php
··· 105 105 'emacs' => pht('Emacs'), 106 106 'vscode' => pht('Visual Studio Code'), 107 107 'editor' => pht('Generic Editor'), 108 + 'idea' => pht('IntelliJ IDEA'), 108 109 ); 109 110 110 111 $default_label = phutil_tag('em', array(), pht('Supported Protocol'));