<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Is there a jump to next inner block, or jump out of block command?]]></title><description><![CDATA[<p dir="auto">foreach (sum &gt; product) {<br />
//block 0<br />
if (x &gt; y) {<br />
|<br />
// block 1<br />
if (y &gt; z) {<br />
// block 2<br />
}<br />
} // end of block 1<br />
}</p>
<p dir="auto">Suppose cursor was |. You’re inside of block 1. Next inner block would be if (y &gt; z), or block 2. Jumping out should either send you to the end of block 1. Jumping backward would be like, to the start of block 0, maybe? or to the start of block 1, idk.</p>
<p dir="auto">Note++, has this implemented?</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/26755/is-there-a-jump-to-next-inner-block-or-jump-out-of-block-command</link><generator>RSS for Node</generator><lastBuildDate>Thu, 13 Aug 2026 06:07:38 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/26755.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 08 Apr 2025 02:04:24 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Is there a jump to next inner block, or jump out of block command? on Tue, 08 Apr 2025 16:09:08 GMT]]></title><description><![CDATA[<p dir="auto">If your “blocks” are separated by a line break, you can use the commands:</p>
<pre><code>SCI_PARADOWN  Ctrl+]
SCI_PARAUP    Ctrl+[
</code></pre>
<p dir="auto">as they navigate between paragraphs.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/100836</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/100836</guid><dc:creator><![CDATA[notdodgeball]]></dc:creator><pubDate>Tue, 08 Apr 2025 16:09:08 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a jump to next inner block, or jump out of block command? on Tue, 08 Apr 2025 11:01:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/thomas-zito" aria-label="Profile: Thomas-Zito">@<bdi>Thomas-Zito</bdi></a></p>
<p dir="auto">Perhaps your question is better-asked with code that is formatted reasonably, e.g.:</p>
<pre><code>foreach (sum &gt; product) {
    //block 0
    if (x &gt; y) {
        |
        // block 1
        if (y &gt; z) {
            // block 2
        }
    } // end of block 1
}
</code></pre>
<p dir="auto">In Notepad++, it might appear like this:</p>
<p dir="auto"><img src="/assets/uploads/files/1744109728783-8a475cf3-80d2-4964-954a-dc6a867d1fd8-image.png" alt="8a475cf3-80d2-4964-954a-dc6a867d1fd8-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Now that we have a good visual on it, your question probably becomes “Is there a way to jump to the various fold points?” The answer is no, not in native Notepad++.  But it could be done via scripting.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/100826</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/100826</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Tue, 08 Apr 2025 11:01:50 GMT</pubDate></item></channel></rss>