Broken Highlightning sometimes after //= …
This gets very ugly with big files and brings my boss to the conclusion i should use emacs again
Please help.
Perl example code:
if ($config{dev_demo}) {
$config{url} //= ‘http://demo.xy.com’;
$config{cgi_url} //= “$config{url}/cgi-bin/$config{dev_demo}”;
$config{htdocs_url} //= “$config{url}/$config{dev_demo}”;
$config{cgi_path} //= “/webserver/xxx/cgi-bin/$config{dev_demo}”;
$config{htdocs_path} //= “/webserver/xxx/$config{dev_demo}”;
$config{dbms_type} //= ‘PostgreSQL’;
$config{dbname} //= “xxx”;
$config{dbuser} //= ‘yyy’;
$config{dbpwd} //= ‘’;
$config{perl_path} //= ‘/opt/ActivePerl-5.10/bin/perl’;
fix_perl_path();
$config{dbpwd} //= ‘/webserver/xxx/jre/linux/bin/java’;
$config{running_at_home} //= 1;
$config{admin_mode} //= 1;
$config{system_type} //= 50;
}
if ($config{dev_laptop}) {
$config{cgi_path} = “c:/audimex/$config{dev_laptop}/cgi-bin”;
}