<?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[Can&#x27;t make a keyboard macro for a shortcut in Notepad++ v6.9.2]]></title><description><![CDATA[<p dir="auto">I’m an old user, but I have not posted here in a long time. I’m trying to get a particular macro to work via keystrokes. I use the date and time short format from the TextFX menu a <em>lot</em>. I would like to use a keyboard macro to run it, but I’m running into problems. I record the mouse clicks and save what was recorded, but when I try to set it to run with ctrl-shift-t that does not work. I hope someone can help me despite the ancient version of the software that I’m using. Thanks. The debug info is below.</p>
<p dir="auto">Notepad++ v6.9.2<br />
Build time : May 18 2016 - 00:34:05<br />
Path : C:\Program Files (x86)\Notepad++\notepad++.exe<br />
Admin mode : OFF<br />
Local Conf mode : OFF<br />
OS : Windows 10<br />
Plugins : PluginManager.dll docMonitor.dll DSpellCheck.dll mimeTools.dll NppConverter.dll NppExport.dll NppNetNote.dll NppTextFX.dll SpellChecker.dll</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/27576/can-t-make-a-keyboard-macro-for-a-shortcut-in-notepad-v6.9.2</link><generator>RSS for Node</generator><lastBuildDate>Tue, 16 Jun 2026 18:14:56 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/27576.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 16 Jun 2026 07:57:30 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Can&#x27;t make a keyboard macro for a shortcut in Notepad++ v6.9.2 on Tue, 16 Jun 2026 15:09:29 GMT]]></title><description><![CDATA[<p dir="auto">I unzipped the v6.9.2, and looked a bit:</p>
<ul>
<li>
<p dir="auto">docMonitor was one of Don’s old plugins that he didn’t bother continuing development on when he moved Notepad++ from sourceforge to GitHub, because the feature of updating files every few seconds is already built into Notepad++, even in the old v6.9.2.</p>
</li>
<li>
<p dir="auto">DSpellCheck.dll and SpellChecker.dll are two different spell-checker plugins.  There’s no reason to have both.  DSpellCheck allows either the Hunspell dictionary, or the Aspell dictionary (which is what ShellChecker.dll uses), or Windows’ built in spell-checking files (which is what Word and similar use).  There’s no reason to have both, even in the old v6.9.2.</p>
</li>
<li>
<p dir="auto">It is possible to add a keyboard shortcut to any of NppTextFX commands – use the <strong>Settings &gt; Shortcut Mapper</strong>, go to <strong>Plugin Commands</strong>, and look for the TextFX command (like <code>Convert quotes to "</code>), and you can <strong>Modify</strong> those to have a keystroke for that single command</p>
</li>
<li>
<p dir="auto">I verified that even the most-recent NppUISpy <a href="https://github.com/dinkumoil/NppUISpy/releases/" rel="nofollow ugc">here</a> has the 32-bit version (<code>..._UNI.zip</code>) which, if you unzip the DLL into your plugins directory, will allow you to use UISpy even on your old Notepad++.  And I confirmed that the macro syntax was enough the same that the FAQ’s section on manually editing the macro will allow you to embed</p>
<ul>
<li>
<p dir="auto">for example, for my portable v6.9.2, with the plugins I installed, UISpy told me <strong>TextFX &gt; TextFX Characters &gt; Convert quotes to ’</strong> was at 22030 (it will almost certainly be at a different ID for you, because I didn’t grab all the same plugins that you had).  But for <em>me</em>, I could then have a macro that would do the <strong>Select All</strong> then <strong>Convert quotes to ’</strong> with the following macro source:</p>
<pre><code>&lt;Macro name="AllSingleQuote" Ctrl="no" Alt="no" Shift="no" Key="0"&gt;
    &lt;Action type="0" message="2013" wParam="0" lParam="0" sParam="" /&gt;
    &lt;Action type="2" message="0" wParam="22030" lParam="0" sParam="" /&gt;
&lt;/Macro&gt;
</code></pre>
<p dir="auto">so after saving that, and restarting Notepad++, I had a new macro which would correctly run the NppTextFX command.</p>
</li>
</ul>
</li>
</ul>
<p dir="auto">So it’s possible to do what you want in Notepad++ v6.9.2.  But I still highly recommend uninstalling the outdated, insecure version, grab the most recent 64-bit version, and bring yourself into the 2020s.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/105747</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/105747</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Tue, 16 Jun 2026 15:09:29 GMT</pubDate></item><item><title><![CDATA[Reply to Can&#x27;t make a keyboard macro for a shortcut in Notepad++ v6.9.2 on Tue, 16 Jun 2026 13:13:27 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/decrepit-old-geekoid" aria-label="Profile: decrepit-old-geekoid">@<bdi>decrepit-old-geekoid</bdi></a> <a href="/post/105744">said</a>:</p>
<p dir="auto">Notepad++ v6.9.2<br />
Build time : May 18 2016 - 00:34:05</p>
</blockquote>
<p dir="auto">Wow!  That’s ancient.  You do know that there’s been a decade of improvements to the software since then?  Including a lot of security fixes?</p>
<blockquote>
<p dir="auto">I use the date and time short format from the TextFX menu a lot. I would like to use a keyboard macro to run it, but I’m running into problems.</p>
</blockquote>
<p dir="auto">It’s been a long time since I’ve used that version, but in modern Notepad++, you cannot macro-record plugin commands.  We have a <a href="/topic/25400">FAQ: Automating Notepad++</a>, which has a section on how to “cheat” the macro system (manually edit the macro to include something like a plugin command), but I don’t know if the NppUISpy plugin works on a Notepad++ that old, so I don’t know if you can have the easy way to find out the command ID that gets assigned to the TextFX</p>
<hr />
<p dir="auto">If you choose to update, and I recommend that you do, some notes:</p>
<ul>
<li>you could install the 64-bit version instead of the 32-bit version, which would allow editing bigger files</li>
<li>there is no more “PluginManager”: that was abandoned somewhere around 2018 (v7.6) because the PluginManager started trying to show ads inside Notepad++, which was anathema to the Notpead++ owner.  Since v7.6.3, Notepad++ has had a stable “Plugins Admin” tool built into Notepad++</li>
<li>NppTextFX doesn’t exist in its old form, since the original plugin’s author had long-abandoned that plugin.  But in modern Notepad++, someone has forked it to NppTextFX2 (currently, v2.0.3), which you can install from the Plugins Admin interface</li>
<li>DSpell check and NppNetNote plugins are still around, so you can install those from Plugins Admin</li>
<li>I don’t see docMonitor in Plugins Admin, so I’m not sure what that is.  It may be that modern Notepad++ has the features you need built in (it’s got a “<a href="https://npp-user-manual.org/docs/views/#live-file-monitoring" rel="nofollow ugc"><code>tail -f</code> mode</a>” and the <a href="https://npp-user-manual.org/docs/preferences/#misc" rel="nofollow ugc">“File Status Auto-detection” settings</a>, but I don’t know if that covers everything you wanted from the docMonitor plugin)</li>
</ul>
]]></description><link>https://community.notepad-plus-plus.org/post/105746</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/105746</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Tue, 16 Jun 2026 13:13:27 GMT</pubDate></item></channel></rss>