<div class="markdown">
<p dir="auto">Hi,<br>
I started to customize the highlighting for Perl code with this code in my personal Bundle:</p>

<pre><code>{    patterns = (
    {    name = 'comment.line.debug.perl';
        match = '\bi ''.*'';|\bi ".*";|\bi q{.*};|\bi qq{.*};';
    },
);
</code></pre>

<p dir="auto">}</p>

<p dir="auto">This works fine, so that all lines like <code>i '…';</code> are now formatted like a comment (<code>#</code>).</p>

<p dir="auto">But it has some side-effects: E.g. the change from double-quotes to single-quotes by pressing <code>Ctrl+Shift+"</code> does not work any more. Plus I would like to change the formatting (color, ...) to something different.</p>

<p dir="auto">What would be the the best way?</p>

<p dir="auto">-- <br>
Ingo Lantschner</p>

</div>