Skip to content

Commit

Permalink
bug #12209 [FrameworkBundle] Fixed ide links (hason)
Browse files Browse the repository at this point in the history
This PR was merged into the 2.3 branch.

Discussion
----------

[FrameworkBundle] Fixed ide links

| Q             | A
| ------------- | ---
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | -
| License       | MIT
| Doc PR        | -

Commits
-------

baf5f47 [FrameworkBundle] Fixed ide links
  • Loading branch information
fabpot committed Oct 13, 2014
2 parents c9cd76c + baf5f47 commit 2ad0642
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -359,8 +359,8 @@ private function registerTemplatingConfiguration(array $config, $ide, ContainerB
$links = array(
'textmate' => 'txmt://open?url=file://%%f&line=%%l',
'macvim' => 'mvim://open?url=file://%%f&line=%%l',
'emacs' => 'emacs://open?url=file://%file&line=%line',
'sublime' => 'subl://open?url=file://%file&line=%line',
'emacs' => 'emacs://open?url=file://%%f&line=%%l',
'sublime' => 'subl://open?url=file://%%f&line=%%l',
);

$container->setParameter('templating.helper.code.file_link_format', isset($links[$ide]) ? $links[$ide] : $ide);
Expand Down

0 comments on commit 2ad0642

Please sign in to comment.