<div class="markdown">
<p dir="auto">On 8 Dec 2013, at 2:49, Allan Odgaard wrote:</p>

<blockquote>
<p dir="auto">On 5 Dec 2013, at 15:24, Ingo Lantschner wrote:</p>

<blockquote>
<p dir="auto">In the archive I found this conversion:</p>

<blockquote>
<p dir="auto">[…]<br>
increaseIndentPattern = '^\s<em>=\w+';<br>
decreaseIndentPattern = '^\s</em>=\w+';</p>
</blockquote>

<p dir="auto">I am not sure, where to change these settings. In the Perl Bundle -> Settings -> Indention? Or should I better make my own Bundle, so that these Settings stick in case of an update?</p>
</blockquote>

<p dir="auto">You can change them directly in the Perl bundle. […]</p>
</blockquote>

<p dir="auto">Thanks for your answer! Now I know at least in which Bundle I have to write the changes. Since changing the "global" indention rules for Perl (<code>Bundle->Settings->Indention</code>) is probably not what we want, I tried to change it just for the POD-text, by editing the Language Grammar of Perl, and there the scope <code>comment.block.documentation.perl</code>:</p>

<pre><code>    patterns = (
    {    include = '#line_comment'; },
    {    name = 'comment.block.documentation.perl';
        begin = '^=';
        end = '^=cut';
        captures = { 0 = { name = 'punctuation.definition.comment.perl'; }; };
  increaseIndentPattern = '^\s*=\w+';
  decreaseIndentPattern = '^\s*=\w+';
    },
</code></pre>

<p dir="auto">Unfortunately this did not change anything. So is this the right place? Or did I misspell something?</p>

<p dir="auto">Kind regards, Ingo  </p>

</div>