Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pulse00/1062569 to your computer and use it in GitHub Desktop.
Save pulse00/1062569 to your computer and use it in GitHub Desktop.
file_link_format extension for eclipse
<?php
private function registerTemplatingConfiguration(array $config, $ide, ContainerBuilder $container, XmlFileLoader $loader)
{
$loader->load('templating.xml');
$loader->load('templating_php.xml');
$links = array(
'textmate' => 'txmt://open?url=file://%f&line=%l',
'macvim' => 'mvim://open?url=file://%f&line=%l',
'eclipse' => 'symfony://open?file=%f&line=%l'
);
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment