<?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[Notepad++ 7.5.4  - Double tapping on touchpad does not work in any document in editor window in Windows 10]]></title><description><![CDATA[<p dir="auto">Double tapping on the touch keypad does not have any effect in any document in any editor window.<br />
Other operations on the touch keypad work:</p>
<ul>
<li>Single tap positions the cursor at the tapped point in the document</li>
<li>Tap and drag works to highlight a range of text in the document<br />
etc.<br />
Also, clicking and double clicking on the touch pad BUTTONs work normally.<br />
In particular, double clicking using the touch pad BUTTONs correctly opens the URL in the default browser window.<br />
Only double tapping on the touch pad doesn’t work.</li>
<li>Double tapping on a word to select/highlight it doesn’t work (not highlighted)</li>
<li>Double tapping on an underlined URL does not open it in a browser.</li>
</ul>
<p dir="auto">Both of these used to work in previous versions of np++, although my version may have been a few versions back.</p>
<h2>Debug Info is below:</h2>
<h2>Notepad++ v7.5.4   (32-bit)<br />
Build time : Jan  1 2018 - 01:47:45<br />
Path : C:\Program Files (x86)\Notepad++\notepad++.exe<br />
Admin mode : OFF<br />
Local Conf mode : OFF<br />
OS : Windows 10 (64-bit)<br />
Plugins : ComparePlugin.dll DSpellCheck.dll mimeTools.dll NppColumnSort.dll NppConverter.dll NppExport.dll NppTextFX.dll PluginManager.dll Tidy2.dll XMLTools.dll</h2>
]]></description><link>https://community.notepad-plus-plus.org/topic/15044/notepad-7-5-4-double-tapping-on-touchpad-does-not-work-in-any-document-in-editor-window-in-windows-10</link><generator>RSS for Node</generator><lastBuildDate>Tue, 16 Jun 2026 21:18:01 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/15044.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 08 Jan 2018 07:26:53 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Notepad++ 7.5.4  - Double tapping on touchpad does not work in any document in editor window in Windows 10 on Thu, 25 Jan 2018 07:12:12 GMT]]></title><description><![CDATA[<p dir="auto">It appears this is a Scintilla bug.  Scintilla is a vital component of NP++ and several other text editor-type programs, which are probably all exhibiting this behavior.</p>
<p dir="auto">Bug reports:<br />
<a href="https://github.com/notepad-plus-plus/notepad-plus-plus/issues/3895" rel="nofollow ugc">https://github.com/notepad-plus-plus/notepad-plus-plus/issues/3895</a><br />
<a href="https://sourceforge.net/p/scintilla/bugs/1983" rel="nofollow ugc">https://sourceforge.net/p/scintilla/bugs/1983</a></p>
<p dir="auto">If you, like me, value ‘tap twice’ word selection over ‘tap twice and drag’ multi-select, follow this workaround:</p>
<ol>
<li>Go into Windows 10 ‘Touchpad settings’</li>
<li>Disable ‘Tap twice and drag to multi-select’</li>
</ol>
]]></description><link>https://community.notepad-plus-plus.org/post/29713</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/29713</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Thu, 25 Jan 2018 07:12:12 GMT</pubDate></item><item><title><![CDATA[Reply to Notepad++ 7.5.4  - Double tapping on touchpad does not work in any document in editor window in Windows 10 on Fri, 12 Jan 2018 07:12:20 GMT]]></title><description><![CDATA[<p dir="auto">I have the exact same problem on my Surface Pro 3 / Win10 !</p>
]]></description><link>https://community.notepad-plus-plus.org/post/29393</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/29393</guid><dc:creator><![CDATA[Jean-Guy SIRAC]]></dc:creator><pubDate>Fri, 12 Jan 2018 07:12:20 GMT</pubDate></item><item><title><![CDATA[Reply to Notepad++ 7.5.4  - Double tapping on touchpad does not work in any document in editor window in Windows 10 on Tue, 09 Jan 2018 21:21:30 GMT]]></title><description><![CDATA[<p dir="auto">After a bit of googling, I found <a href="http://windowdetective.sourceforge.net" rel="nofollow ugc">http://windowdetective.sourceforge.net</a>, which appears to be able to watch what messages go in and out. I make no guarantees about the safety of this app, though my virus detector said nothing.  Use at your own risk.</p>
<p dir="auto">After installing and running (and looking at their documentation), here’s a simplified procedure:</p>
<ol>
<li>Click (and drag) on Pick Window, and drag it into your NPP editing window.</li>
<li>In the Window Detective hierarcy pane (on the left), it will highlight a “Scintilla” row</li>
<li>RightClick on the highlighted “Scintilla” and select “Messages”</li>
<li>Click on the red STOP button to stop intercepting messages temporarily; the button will change to a green START button</li>
<li>Click on the eraser to the right of the START button, which will clear the screen</li>
<li>Click on the filter icon
<ol>
<li>Exclude All</li>
<li>Type <code>WM_LBUTTON</code> in the FIND box</li>
<li>check <code>☑ WM_LBUTTONDBLCLK</code></li>
<li>(and possibly <code>☑ WM_LBUTTONDOWN</code>, <code>☑ WM_LBUTTONUP</code>, if you want to watch all “left-click” messages)</li>
<li>click <code>OK</code></li>
</ol>
</li>
<li>Click START button</li>
<li>Using mouse, double-click on something in your NPP window…
<ol>
<li>You should see a <code>→ WM_LBUTTONDBLCLK</code> and <code>← WM_LBUTTONDBLCLK</code> indicating NPP was sent the DoubleClick, and responded</li>
<li>If you filtered on the DOWN and UP, you’ll likely see other <code>LBUTTON</code> messages, too.</li>
</ol>
</li>
<li>Double-tap on something else in that same window, and you should see another copy of the message
<ol>
<li>If you see the <code>→ WM_LBUTTONDBLCLK</code> and <code>← WM_LBUTTONDBLCLK</code>, then NPP was sent the DoubleClick.
<ol>
<li>If there, expand the <code>← WM_LBUTTONDBLCLK</code>, which should show a return value of 0</li>
</ol>
</li>
<li>If all you see is <code>UP</code> and <code>DOWN</code>, without the <code>DBLCLK</code>, then windows isn’t seeing your DoubleClick to pass on to NPP</li>
</ol>
</li>
<li>Click the STOP button again</li>
</ol>
<p dir="auto">When I ran this procedure, everything worked as I expected.</p>
<p dir="auto">As far as I know, from the NPP (and internal scintilla) perspective, it’s getting a WM_LBUTTONDBLCLK message, and it doesn’t know whether it’s from the mouse/click or the touchpad/tap, so I don’t see how separate behavior could arise.  But if you aren’t seeing the <code>DBLCLK</code> message when using the touchpad, then maybe something is wrong on the driver side, I think (though that doesn’t explain why it’s working in other apps).</p>
<p dir="auto">Also, maybe play with “double-click speed” settings for either your mouse or touchpad, and see if maybe that will help.</p>
<p dir="auto">Good luck.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/29309</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/29309</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Tue, 09 Jan 2018 21:21:30 GMT</pubDate></item><item><title><![CDATA[Reply to Notepad++ 7.5.4  - Double tapping on touchpad does not work in any document in editor window in Windows 10 on Tue, 09 Jan 2018 20:26:43 GMT]]></title><description><![CDATA[<p dir="auto">Peter, those are good suggestions, and I tried all three of them, somehow it is still not working.<br />
Double clicking works, double tapping does not.<br />
Arrrggggh :-)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/29308</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/29308</guid><dc:creator><![CDATA[Devarajan Swami]]></dc:creator><pubDate>Tue, 09 Jan 2018 20:26:43 GMT</pubDate></item><item><title><![CDATA[Reply to Notepad++ 7.5.4  - Double tapping on touchpad does not work in any document in editor window in Windows 10 on Tue, 09 Jan 2018 17:31:18 GMT]]></title><description><![CDATA[<p dir="auto">Double-tap on my laptop’s touchpad works fine for me in 7.5.4 as well (32bit for my experiment)</p>
<p dir="auto">Have you tried running without plugins (<code>notepad++.exe -noPlugin</code>, or rename the <code>plugins\</code> subdirs in the notepad++ executable directory and/or the <code>%AppData%\Notepad++\</code> directory)?  Maybe one of your plugins is somehow interfering.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/29305</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/29305</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Tue, 09 Jan 2018 17:31:18 GMT</pubDate></item><item><title><![CDATA[Reply to Notepad++ 7.5.4  - Double tapping on touchpad does not work in any document in editor window in Windows 10 on Tue, 09 Jan 2018 16:47:08 GMT]]></title><description><![CDATA[<p dir="auto">Thanks, Meta.<br />
Double tapping works fine in other Windows applications:</p>
<ul>
<li>Double tapping or double clicking on Windows Notepad highlights words and URL links, as expected.</li>
<li>Double tapping or double clicking a word on Microsoft Word highlights the word.</li>
<li>Double tapping or double clicking a URL link on Microsoft Word opens the link in the default browser, as expected.</li>
<li>Behavior in NetBeans 8.2 also works the same as Word, as expected.</li>
</ul>
<p dir="auto">But the incorrect double tapping behavior remains on my install of Notepad++ 7.5.4, unfortunately.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/29303</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/29303</guid><dc:creator><![CDATA[Devarajan Swami]]></dc:creator><pubDate>Tue, 09 Jan 2018 16:47:08 GMT</pubDate></item><item><title><![CDATA[Reply to Notepad++ 7.5.4  - Double tapping on touchpad does not work in any document in editor window in Windows 10 on Mon, 08 Jan 2018 21:11:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/devarajan-swami" aria-label="Profile: Devarajan-Swami">@<bdi>Devarajan-Swami</bdi></a></p>
<p dir="auto">i just tested np++ 7.5.4 x86 on w10pro x64 (1709 build 16299.192) with a touchpad and can not confirm this issue.<br />
double tapping on a word highlights the word as expected<br />
double tapping on a link opens the link in the default browser as expected</p>
<p dir="auto">what happens if you double click a word in the default windows notepad or word ?<br />
does it mark the whole word as it should ?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/29292</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/29292</guid><dc:creator><![CDATA[Meta Chuh]]></dc:creator><pubDate>Mon, 08 Jan 2018 21:11:13 GMT</pubDate></item></channel></rss>