<?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[v8.4.2 bug]]></title><description><![CDATA[<p dir="auto">In updated to v8.4.2 64 bit today, and now Notepad++ closes on my at random times when I start typing. I’m rolling back to the previous version.</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/23098/v8-4-2-bug</link><generator>RSS for Node</generator><lastBuildDate>Fri, 17 Apr 2026 21:06:52 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/23098.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 09 Jun 2022 21:11:38 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to v8.4.2 bug on Wed, 22 Jun 2022 12:58:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/24325">@rdipardo</a> ,</p>
<p dir="auto">The debug instructions don’t trash anything – they temporarily rename a folder.  I believe it is a solid debugging plan to try to narrow down where the problem is coming from.  There are times when the plugin is at fault, even if it’s not because of the 64bit-only change in Notepad++.</p>
<p dir="auto">But since it bothers you, the paragraph now emphasizes 64bit for the v8.3 change:</p>
<blockquote>
<p dir="auto">in the 64bit Notepad++, v8.3 updated the communication rules between plugins and the application to better handle large files (&gt;2GB) which required all 64bit plugins that used certain protocol calls to release a new version.</p>
</blockquote>
]]></description><link>https://community.notepad-plus-plus.org/post/77739</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77739</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Wed, 22 Jun 2022 12:58:19 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Wed, 22 Jun 2022 00:59:59 GMT]]></title><description><![CDATA[<p dir="auto">The main point to make is that only 64-bit plugins need to be scrutinized for 8.3 compatibility, so a user doesn’t mistakenly trash a perfectly safe 32-bit plugin.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/77735</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77735</guid><dc:creator><![CDATA[rdipardo]]></dc:creator><pubDate>Wed, 22 Jun 2022 00:59:59 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Tue, 21 Jun 2022 19:34:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/24325">@rdipardo</a> ,</p>
<blockquote>
<p dir="auto">That changed the ABI because it’s machine-dependent. A change to the “communication protocol” or API would be adding or removing a function parameter</p>
</blockquote>
<p dir="auto">I will rephrase it to “rules” rather than “protocol”.  It doesn’t need to be any more technical than that for a FAQ entry for normal users</p>
]]></description><link>https://community.notepad-plus-plus.org/post/77724</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77724</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Tue, 21 Jun 2022 19:34:30 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Tue, 21 Jun 2022 18:53:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/3841">@peterjones</a>,</p>
<blockquote>
<p dir="auto">Possible Culprit: Plugin<br />
.  . .<br />
in v8.3, Notepad++ updated the communication protocol between plugins and the application to better handle large files (&gt;2GB) which required all plugins that used certain protocol calls to release a new version.</p>
</blockquote>
<p dir="auto">What they really did was increase the size of Scintilla’s <code>TextRange</code> structure to accept character positions &gt;2,147,483,647, and only in x86_64 builds. That changed the <strong><em>ABI</em></strong> because it’s machine-dependent. A change to the “communication protocol” or API would be adding or removing a function parameter, like the <code>ADD_ZERO_PADDING</code> <code>wPARAM</code> <a href="https://npp-user-manual.org/docs/plugin-communication/#nppm-getnppversion" rel="nofollow ugc">in v8.4.1</a>.</p>
<p dir="auto">Breaking the ABI for the sake of one rarely used feature was pretty reckless, but it would never be a problem if:</p>
<ol>
<li>plugins were dynamically loaded scripts, as they are in Vim, Sublime Text or VS Code</li>
<li>plugins could never call into Scintilla’s APIs; a baby-proofed FFI could be provided, but no direct calls into any C++ functions, ever</li>
</ol>
<p dir="auto">Somebody is bound to figure this out and fork N++ to include the equivalent of Vim’s <a href="https://github.com/vim/vim/blob/master/runtime/doc/if_pyth.txt" rel="nofollow ugc">Python interface</a>. Static linkage with some form of PythonScript’s code base would be the quickest way. A plugin of the future would be just a Python module that users can fix or adapt all by themselves. Slower performance than DLL plugins, yes, but not noticeably so on recent hardware.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/77722</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77722</guid><dc:creator><![CDATA[rdipardo]]></dc:creator><pubDate>Tue, 21 Jun 2022 18:53:50 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Tue, 21 Jun 2022 14:00:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@alan-kilborn</a> said in <a href="/post/77718">v8.4.2 bug</a>:</p>
<blockquote>
<p dir="auto">It’s simply amazing! :-)</p>
</blockquote>
<p dir="auto">Have fun pasting that link a lot. ;-)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/77719</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77719</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Tue, 21 Jun 2022 14:00:35 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Tue, 21 Jun 2022 13:58:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/3841">@peterjones</a> said in <a href="/post/77717">v8.4.2 bug</a>:</p>
<blockquote>
<p dir="auto">How is this for a FAQ entry?</p>
</blockquote>
<p dir="auto">It’s simply amazing! :-)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/77718</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77718</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Tue, 21 Jun 2022 13:58:18 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Tue, 21 Jun 2022 13:53:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@alan-kilborn</a> said in <a href="/post/77694">v8.4.2 bug</a>:</p>
<blockquote>
<p dir="auto">I suppose the best we can do is a FAQ entry.</p>
</blockquote>
<p dir="auto">How is this for a FAQ entry?</p>
<p dir="auto"><a href="https://community.notepad-plus-plus.org/topic/23146/faq-desk-notepad-crashes-freezes-unresponsive-after-update">https://community.notepad-plus-plus.org/topic/23146/faq-desk-notepad-crashes-freezes-unresponsive-after-update</a></p>
]]></description><link>https://community.notepad-plus-plus.org/post/77717</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77717</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Tue, 21 Jun 2022 13:53:02 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Mon, 20 Jun 2022 22:24:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/12335">@terry-r</a> said in <a href="/post/77695">v8.4.2 bug</a>:</p>
<blockquote>
<p dir="auto">And we expect them to read a FAQ section?</p>
</blockquote>
<p dir="auto">Nope.  But the quick response by someone here of “read FAQ” is fairly quick.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/77702</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77702</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Mon, 20 Jun 2022 22:24:08 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Mon, 20 Jun 2022 21:20:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/23651">@lycan-thrope</a> ,<br />
Official report:<br />
<a href="https://github.com/notepad-plus-plus/notepad-plus-plus/issues/11819" rel="nofollow ugc">https://github.com/notepad-plus-plus/notepad-plus-plus/issues/11819</a></p>
]]></description><link>https://community.notepad-plus-plus.org/post/77698</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77698</guid><dc:creator><![CDATA[Lycan Thrope]]></dc:creator><pubDate>Mon, 20 Jun 2022 21:20:13 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Mon, 20 Jun 2022 21:09:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@alan-kilborn</a> said in <a href="/post/77694">v8.4.2 bug</a>:</p>
<blockquote>
<p dir="auto">I suppose the best we can do is a FAQ entry.</p>
</blockquote>
<p dir="auto">Probably, but then I think you must be having a laugh. How many times do we get OPs asking questions without having first read the “pinned” posts. We refer them back to that post so they may provide better information or more importantly examples we can trust haven’t been munted by the interpreter. They hardly ever do even when it’s in their face.</p>
<p dir="auto">I will say though that <a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/3841">@PeterJones</a> must have the stamina of an ox to repeatedly help those who don’t wish to even raise a finger themselves!</p>
<p dir="auto">And we expect them to read a FAQ section? :-)))</p>
<p dir="auto">Terry</p>
]]></description><link>https://community.notepad-plus-plus.org/post/77695</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77695</guid><dc:creator><![CDATA[Terry R]]></dc:creator><pubDate>Mon, 20 Jun 2022 21:09:29 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Mon, 20 Jun 2022 21:04:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/12335">@terry-r</a> said in <a href="/post/77692">v8.4.2 bug</a>:</p>
<blockquote>
<p dir="auto">but there must be a better solution that what we’re seeing on the forum currently. It seems almost every 2nd post is about the plugin incompatibility issue with the latest NPP version</p>
</blockquote>
<p dir="auto">I suppose the best we can do is a FAQ entry.<br />
Then support becomes “See the FAQ” and, before it becomes too tiresome, possibly copying a direct link to the appropriate FAQ entry.</p>
<p dir="auto">I’m open to better suggestions, in fact, I’d love one.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/77694</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77694</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Mon, 20 Jun 2022 21:04:29 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Mon, 20 Jun 2022 20:57:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@alan-kilborn</a> said in <a href="/post/77691">v8.4.2 bug</a>:</p>
<blockquote>
<p dir="auto">I suppose the alternative is a stagnant N++!  :-)</p>
</blockquote>
<p dir="auto">Don’t misunderstand. I’m all for progress. It’s the fallout that seems avoidable. Amazing how many users are upgrading because NPP says so, only then to find their plugin kills it.</p>
<p dir="auto">I don’t know what the alternative should be, but there must be a better solution that what we’re seeing on the forum currently. It seems almost every 2nd post is about the plugin incompatibility issue with the latest NPP version. And as some plugin developers will likely take some time to update their plugin I can see this continuing some months.</p>
<p dir="auto">Terry</p>
]]></description><link>https://community.notepad-plus-plus.org/post/77692</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77692</guid><dc:creator><![CDATA[Terry R]]></dc:creator><pubDate>Mon, 20 Jun 2022 20:57:03 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Mon, 20 Jun 2022 20:52:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/23651">@lycan-thrope</a> said in <a href="/post/77690">v8.4.2 bug</a>:</p>
<blockquote>
<p dir="auto">and now I have to find the place to report this bug</p>
</blockquote>
<p dir="auto">If Notepad++ isn’t removing a plugin when it asks you to and you say Yes (I’ve seen this behavior as well), then the normal Notepad++ issue tracker is where to report it; see the FAQ on this site.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/12335">@terry-r</a> said in <a href="/post/77688">v8.4.2 bug</a>:</p>
<blockquote>
<p dir="auto">Gotta love a major re-hash in NPP which then means a LOT of fallout with plugins which may be going on for months!</p>
</blockquote>
<p dir="auto">I suppose the alternative is a stagnant N++!  :-)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/77691</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77691</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Mon, 20 Jun 2022 20:52:08 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Mon, 20 Jun 2022 20:49:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/12335">@terry-r</a> ,<br />
Yes, and now I have to find the place to report this bug. :)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/77690</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77690</guid><dc:creator><![CDATA[Lycan Thrope]]></dc:creator><pubDate>Mon, 20 Jun 2022 20:49:21 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Mon, 20 Jun 2022 20:45:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/23651">@lycan-thrope</a> said in <a href="/post/77686">v8.4.2 bug</a>:</p>
<blockquote>
<p dir="auto">Actually Terry, I’ve confirmed someone else’s issue with this.</p>
</blockquote>
<p dir="auto">I think you’ll find the problem mentioned in this thread isn’t the CSVLint one, otherwise the OP would have mentioned it. He just said it “refused to even start”.</p>
<p dir="auto">Of course he may have that issue, but as he was rather light on details we’ll never know. At least he “downgraded” and got going again.</p>
<p dir="auto">Gotta love a major re-hash in NPP which then means a LOT of fallout with plugins which may be going on for months!</p>
<p dir="auto">Terry</p>
]]></description><link>https://community.notepad-plus-plus.org/post/77688</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77688</guid><dc:creator><![CDATA[Terry R]]></dc:creator><pubDate>Mon, 20 Jun 2022 20:45:59 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Mon, 20 Jun 2022 20:45:04 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/23651">@lycan-thrope</a> ,<br />
Okay, so I went in and manually had to remove the CSVLint folder from the <code>C:\Program Files\Notepad++\plugins</code> folder and then double clicked the desktop icon and it came up with this debug info.</p>
<pre><code>Notepad++ v8.4.2   (64-bit)
Build time : May 29 2022 - 16:47:30
Path : C:\Program Files\Notepad++\notepad++.exe
Command Line : $COMMAND_LINE_PLACEHOLDER$
Admin mode : OFF
Local Conf mode : OFF
Cloud Config : OFF
OS Name : Windows 10 Home (64-bit) 
OS Version : 21H2
OS Build : 19044.1766
Current ANSI codepage : 1252
Plugins : 
    CsvQuery (1.2.8)
    mimeTools (2.8)
    NppConverter (4.4)
    NppExport (0.4)
    NppXmlTreeviewPlugin (2)
    PlantUmlViewer (1.1.1.5)
    XMLTools (3.1.1.12)
</code></pre>
<p dir="auto">So I’ll go post the fix in that other thread, but this is a short coming of the program installation, that it asks if you want it removed and then doesn’t do it.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/77687</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77687</guid><dc:creator><![CDATA[Lycan Thrope]]></dc:creator><pubDate>Mon, 20 Jun 2022 20:45:04 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Mon, 20 Jun 2022 20:37:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/12335">@terry-r</a><br />
Actually Terry, I’ve confirmed someone else’s issue with this. I delayed updating with the autoupdate, and when I did the autoupdate from the <code>?</code> menu selection, and popped up offering to remove the CSVLint plugin…but it never does and clicking the icon of the desktop with the <code>installed</code> version, just keeps popping up that pop-up instead of doing it.<br />
<img src="/assets/uploads/files/1655757442699-842updatefail.png" alt="842updatefail.PNG" class=" img-fluid img-markdown" /></p>
<p dir="auto">I can’t post a debug shot because it’s not starting up. :(</p>
]]></description><link>https://community.notepad-plus-plus.org/post/77686</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77686</guid><dc:creator><![CDATA[Lycan Thrope]]></dc:creator><pubDate>Mon, 20 Jun 2022 20:37:51 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Mon, 20 Jun 2022 07:04:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/25592">@bibliothecarius77</a> said in <a href="/post/77672">v8.4.2 bug</a>:</p>
<blockquote>
<p dir="auto">As soon as I installed 8.4.1 again though, it worked without a hitch.</p>
</blockquote>
<p dir="auto">Like any installation it can happen that the install itself failed to complete or that one or more files within became corrupted. This does not make it a bug. Generally when the question of a troubled installation occurs the steps are generally to run without plugins first, then clear out user config files and failing that a complete uninstall, clearing of the folders associated with the install (both program files and local user config files) before reinstalling.</p>
<p dir="auto">It’s good that you managed to overcome it though.</p>
<p dir="auto">Terry</p>
]]></description><link>https://community.notepad-plus-plus.org/post/77673</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77673</guid><dc:creator><![CDATA[Terry R]]></dc:creator><pubDate>Mon, 20 Jun 2022 07:04:08 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Mon, 20 Jun 2022 06:53:30 GMT]]></title><description><![CDATA[<p dir="auto">After using Notepad++ for many years without issues, version 8.4.2 was a surprise for me too a few days ago.<br />
On my work laptop it installed and runs flawlessly, as usual. But on my more powerful desktop computer at home, the newly installed application refused to even start. I tried removing all plugins, then a complete uninstall and fresh install. Neither worked. As soon as I installed 8.4.1 again though, it worked without a hitch. So I hope 8.4.3 will not have this bug.</p>
<p dir="auto">Both computers are running fully updated versions of Windows 10 Pro on 64-bit Intel Core CPUs.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/77672</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77672</guid><dc:creator><![CDATA[Bibliothecarius77]]></dc:creator><pubDate>Mon, 20 Jun 2022 06:53:30 GMT</pubDate></item><item><title><![CDATA[Reply to v8.4.2 bug on Thu, 09 Jun 2022 21:14:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/13273">@bob-barringer</a></p>
<p dir="auto">Probably start by removing all plugins and seeing if that behavior persists.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/77438</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/77438</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Thu, 09 Jun 2022 21:14:51 GMT</pubDate></item></channel></rss>