8000 bug #12209 [FrameworkBundle] Fixed ide links (hason) · symfony/symfony@2ad0642 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2ad0642

Browse files
committed
bug #12209 [FrameworkBundle] Fixed ide links (hason)
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
2 parents c9cd76c + baf5f47 commit 2ad0642

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,8 +359,8 @@ private function registerTemplatingConfiguration(array $config, $ide, ContainerB
359359
$links = array(
360360
'textmate' => 'txmt://open?url=file://%%f&line=%%l',
361361
'macvim' => 'mvim://open?url=file://%%f&line=%%l',
362-
'emacs' => 'emacs://open?url=file://%file&line=%line',
363-
'sublime' => 'subl://open?url=file://%file&line=%line',
362+
'emacs' => 'emacs://open?url=file://%%f&line=%%l',
363+
'sublime' => 'subl://open?url=file://%%f&line=%%l',
364364
);
365365

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

0 commit comments

Comments
 (0)
0