feature #28679 [FrameworkBundle] Add vscode editor to ide config (lexcast)

This PR was merged into the 4.2-dev branch.

Discussion
----------

[FrameworkBundle] Add vscode editor to ide config

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | no
| New feature?  | yes
| BC breaks?    | no     <!-- see https://symfony.com/bc -->
| Deprecations? | no <!-- don't forget to update UPGRADE-*.md and src/**/CHANGELOG.md files -->
| Tests pass?   | yes    <!-- please add some, will be required by reviewers -->
| Fixed tickets | #...   <!-- #-prefixed issue number(s), if any -->
| License       | MIT
| Doc PR        | symfony/symfony-docs#10424 <!-- required for new features -->

<!--
Write a short README entry for your feature/bugfix here (replace this comment block.)
This will help people understand your PR and can be used as a start of the Doc PR.
Additionally:
 - Bug fixes must be submitted against the lowest branch where they apply
   (lowest branches are regularly merged to upper ones so they get the fixes too).
 - Features and deprecations must be submitted against the master branch.
-->

Support for uri handler (added [here](https://github.com/Microsoft/vscode/pull/15320)) in vscode editor.

Commits
-------

05935d848f Add vscode editor to ide config
This commit is contained in:
Nicolas Grekas 2018-10-02 13:47:54 +02:00
commit 32265dda3b
1 changed files with 1 additions and 0 deletions

View File

@ -184,6 +184,7 @@ class FrameworkExtension extends Extension
'sublime' => 'subl://open?url=file://%%f&line=%%l',
'phpstorm' => 'phpstorm://open?file=%%f&line=%%l',
'atom' => 'atom://core/open/file?filename=%%f&line=%%l',
'vscode' => 'vscode://file/%%f:%%l',
);
$ide = $config['ide'];