<?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[Increase Whitespace Size macro issue]]></title><description><![CDATA[<p dir="auto">I have used the following macro for quite a while</p>
<p dir="auto">&lt;Macro name=“Increase Whitespace Size” Ctrl=“yes” Alt=“yes” Shift=“no” Key=“100”&gt;<br />
&lt;Action type=“0” message=“2086” wParam=“3” lParam=“0” sParam=“” /&gt;<br />
&lt;/Macro&gt;</p>
<p dir="auto">It doesn’t work any longer.  I am aware of the Lua Script startup option but I wanted this method to work.</p>
<p dir="auto">Any ideas?</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/18082/increase-whitespace-size-macro-issue</link><generator>RSS for Node</generator><lastBuildDate>Sat, 06 Jun 2026 13:21:50 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/18082.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 14 Aug 2019 14:35:11 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Increase Whitespace Size macro issue on Sun, 15 Sep 2019 12:19:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/steve-messer" aria-label="Profile: Steve-Messer">@<bdi>Steve-Messer</bdi></a></p>
<p dir="auto">I wrote a plugin that can be used to configure the size of white space indicators. Its name is <em>ExtSettings</em>. You can download it <a href="https://sourceforge.net/projects/extsettings/" rel="nofollow ugc">&gt;&gt;&gt; here &lt;&lt;&lt;</a>. It will also be available soon via <em>PluginsAdmin</em>.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/47128</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/47128</guid><dc:creator><![CDATA[dinkumoil]]></dc:creator><pubDate>Sun, 15 Sep 2019 12:19:51 GMT</pubDate></item><item><title><![CDATA[Reply to Increase Whitespace Size macro issue on Tue, 10 Sep 2019 06:08:16 GMT]]></title><description><![CDATA[<p dir="auto">&lt;MARQUEE&gt;UMER&lt;/MARQUEE&gt;</p>
]]></description><link>https://community.notepad-plus-plus.org/post/46955</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/46955</guid><dc:creator><![CDATA[hunterumAR]]></dc:creator><pubDate>Tue, 10 Sep 2019 06:08:16 GMT</pubDate></item><item><title><![CDATA[Reply to Increase Whitespace Size macro issue on Thu, 15 Aug 2019 14:49:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/steve-messer" aria-label="Profile: Steve-Messer">@<bdi>Steve-Messer</bdi></a> If you really want this capability added back in, do this with it:  <a href="https://notepad-plus-plus.org/community/topic/15741/faq-desk-feature-request-or-bug-report" rel="nofollow ugc">https://notepad-plus-plus.org/community/topic/15741/faq-desk-feature-request-or-bug-report</a></p>
]]></description><link>https://community.notepad-plus-plus.org/post/46257</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/46257</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Thu, 15 Aug 2019 14:49:18 GMT</pubDate></item><item><title><![CDATA[Reply to Increase Whitespace Size macro issue on Thu, 15 Aug 2019 14:42:55 GMT]]></title><description><![CDATA[<p dir="auto">I was curious so for fun(?) I dug deeper into this.</p>
<p dir="auto">In 7.6.4, a trapout called <code>isMacroable</code> was added for macros:</p>
<pre><code>void recordedMacroStep::PlayBack(...)
{
    ...
    // Ensure it's macroable message before send it
    if (!isMacroable())
        return;
</code></pre>
<p dir="auto">which leads to:</p>
<pre><code>bool recordedMacroStep::isMacroable() const
{
    // Enumerates all macroable messages
    switch (_message)
    {
        ...
        case SCI_CUT:
        case SCI_COPY:
        case SCI_PASTE:
        case SCI_CLEAR:
        case SCI_CLEARALL:
        case SCI_SELECTALL:
        case SCI_SEARCHANCHOR:
        case SCI_LINEDOWN:
        case SCI_LINEDOWNEXTEND:
        case SCI_PARADOWN:
        ...
            return true;
        default:
            return false;
</code></pre>
<p dir="auto">Unfortunately, <code>SCI_SETWHITESPACESIZE</code> didn’t make it into this list, so it falls into the <code>default</code> category, thus <code>false</code> is returned to the question <code>isMacroable</code>.</p>
<p dir="auto">At least that explains it.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/46256</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/46256</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Thu, 15 Aug 2019 14:42:55 GMT</pubDate></item><item><title><![CDATA[Reply to Increase Whitespace Size macro issue on Wed, 14 Aug 2019 22:54:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/steve-messer" aria-label="Profile: steve-messer">@<bdi>steve-messer</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: alan-kilborn">@<bdi>alan-kilborn</bdi></a> and <strong>All</strong>,</p>
<p dir="auto">Seemingly, you <strong>cannot</strong> run the <strong>Scintilla</strong> message <strong><code>2086</code></strong>, with a <strong>macro</strong>, since the release <strong><code>v7.6.4</code></strong> and above :-(( Works <strong>fine</strong> with Notepad++ <strong><code>v7.6.3</code></strong> !! So, before the upgrade of <strong>Scintilla</strong> ! No idea  <strong>why</strong> this happens :-((</p>
<p dir="auto">Of course, the use of the <strong>Python</strong> or <strong>Lua</strong> script language or the <strong>NppExec</strong> plugin does activate this <strong>Scintilla</strong> message !</p>
<hr />
<ul>
<li>
<p dir="auto">So, to change the <strong>size</strong> of the <strong>orange dot</strong> symbol to the value <strong><code>3</code></strong>, type <strong>one</strong> of the following commands :</p>
<ul>
<li>
<p dir="auto">With the <strong>Python</strong> script : <strong><code>editor.setWhitespaceSize(3)</code></strong></p>
</li>
<li>
<p dir="auto">With the <strong>Lua</strong> script : <strong><code>editor.WhitespaceSize = 3</code></strong></p>
</li>
<li>
<p dir="auto">With the <strong>NppExec</strong> script : <strong><code>SCI_SENDMSG 2086 3</code></strong></p>
</li>
</ul>
</li>
<li>
<p dir="auto">And to know the <strong>current</strong> size of the <strong>space</strong> dot symbol, type <strong>one</strong> of the following commands</p>
<ul>
<li>
<p dir="auto">With the <strong>Python</strong> script : <strong><code>editor.getWhitespaceSize()</code></strong></p>
</li>
<li>
<p dir="auto">With the <strong>Lua</strong> script : <strong><code>editor.WhitespaceSize</code></strong></p>
</li>
<li>
<p dir="auto">With the <strong>NppExec</strong> script : <strong><code>SCI_SENDMSG 2087</code></strong></p>
</li>
</ul>
</li>
</ul>
<hr />
<p dir="auto"><strong>Notes</strong> :</p>
<ul>
<li>
<p dir="auto"><strong>Any</strong> value may be used, but, <strong>practically</strong>, only values, in range <strong><code>[1-4]</code></strong>, seems interesting !</p>
<ul>
<li>
<p dir="auto">Value <strong><code>0</code></strong> does <strong>not</strong> display any <strong>dot</strong> symbol</p>
</li>
<li>
<p dir="auto">Value <strong><code>1</code></strong> displays a <strong>tiny</strong> orange square dot</p>
</li>
<li>
<p dir="auto">Value <strong><code>2</code></strong>, is the <strong>default</strong> dot symbol size</p>
</li>
<li>
<p dir="auto">Value <strong><code>3</code></strong> displays a <strong>medium</strong> square orange dot symbol</p>
</li>
<li>
<p dir="auto">Value <strong><code>4</code></strong> is, to my mind, the <strong>maximum</strong> sensible value</p>
</li>
<li>
<p dir="auto">Value <strong><code>5</code></strong> : Huuuum… You probably need <strong>glasses</strong> ;-))</p>
</li>
</ul>
</li>
</ul>
<p dir="auto">Cheers,</p>
<p dir="auto">guy038</p>
]]></description><link>https://community.notepad-plus-plus.org/post/46244</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/46244</guid><dc:creator><![CDATA[guy038]]></dc:creator><pubDate>Wed, 14 Aug 2019 22:54:59 GMT</pubDate></item><item><title><![CDATA[Reply to Increase Whitespace Size macro issue on Wed, 14 Aug 2019 19:55:30 GMT]]></title><description><![CDATA[<p dir="auto">This issue sounds familiar but I can’t find any prior discussion on it.  I did go back to version 7.6.6 to try it – it doesn’t work there either.</p>
<p dir="auto">I tried it in both versions with the NppExec plugin, and it works there if that is of any help.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/46234</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/46234</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Wed, 14 Aug 2019 19:55:30 GMT</pubDate></item><item><title><![CDATA[Reply to Increase Whitespace Size macro issue on Wed, 14 Aug 2019 19:22:00 GMT]]></title><description><![CDATA[<p dir="auto">Sorry, unfortunately I am not sure when it last worked as I don’t use this everyday. I am currently using version 7.7.1 64-bit.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/46230</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/46230</guid><dc:creator><![CDATA[Steve Messer]]></dc:creator><pubDate>Wed, 14 Aug 2019 19:22:00 GMT</pubDate></item><item><title><![CDATA[Reply to Increase Whitespace Size macro issue on Wed, 14 Aug 2019 14:45:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/steve-messer" aria-label="Profile: Steve-Messer">@<bdi>Steve-Messer</bdi></a></p>
<p dir="auto">It doesn’t do anything when I try it as well (N++ 7.7.1).  Any idea what “any longer” means?  Like, what version of Notepad++ were you using when it worked? And what version are you using now?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/46201</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/46201</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Wed, 14 Aug 2019 14:45:26 GMT</pubDate></item></channel></rss>