<?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[Plugin Feature needed]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">I’m looking for a ‘search / research’ plugin feature, showing searching result in the vertical scroll bar of the document.<br />
When i’m searching for an exprssion into a doc, expression found are highligted, but we are obliged to scroll all the document to quickly see where expression is used.<br />
On certain IDE, results are shown in the scroll bar too, represented by colored lines and as the scroll bar represent the complete document, it’s quick and easy to identify where expressions are used.</p>
<p dir="auto">Is a such plugin already exists ? and if not , will it be possilb eto devleopp it ?</p>
<p dir="auto">Many thanks</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/17705/plugin-feature-needed</link><generator>RSS for Node</generator><lastBuildDate>Sat, 13 Jun 2026 05:52:19 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/17705.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 27 May 2019 09:46:57 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Plugin Feature needed on Thu, 17 Mar 2022 10:37:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dail" aria-label="Profile: dail">@<bdi>dail</bdi></a></p>
<p dir="auto">In general I agree, but in this particular case, which is all about search, I can’t see a race condition.<br />
But keep in mind, that I am a overconfident hobby programmer who may not see the big picture :-).</p>
]]></description><link>https://community.notepad-plus-plus.org/post/75238</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/75238</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Thu, 17 Mar 2022 10:37:31 GMT</pubDate></item><item><title><![CDATA[Reply to Plugin Feature needed on Wed, 16 Mar 2022 20:10:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: alan-kilborn">@<bdi>alan-kilborn</bdi></a> said in <a href="/post/75204">Plugin Feature needed</a>:</p>
<blockquote>
<p dir="auto">until quite recently, Scintilla was not multi-thread capable</p>
</blockquote>
<p dir="auto">Only multi-threaded in regards to computing line lengths for rendering the document. It is not meant to be accessed by multiple threads simultaneously.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ekopalypse" aria-label="Profile: ekopalypse">@<bdi>ekopalypse</bdi></a> said in <a href="/post/75206">Plugin Feature needed</a>:</p>
<blockquote>
<p dir="auto">don’t change anything from the Scinitilla/Notepad++ point of view</p>
</blockquote>
<p dir="auto">Even searching though a document with a background thread and then the main thread editing the document could lead to very bad scenarios. This is even more likely if the document is large and the search term occurs infrequently.</p>
<p dir="auto">PythonScript has proven multi-threaded access is not generally a good idea when it comes to Scintilla.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/75229</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/75229</guid><dc:creator><![CDATA[dail]]></dc:creator><pubDate>Wed, 16 Mar 2022 20:10:27 GMT</pubDate></item><item><title><![CDATA[Reply to Plugin Feature needed on Wed, 16 Mar 2022 14:11:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: alan-kilborn">@<bdi>alan-kilborn</bdi></a></p>
<p dir="auto">yes, but as long as you don’t change anything from the Scinitilla/Notepad++ point of view, you can use another thread to make it do some work.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/75206</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/75206</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Wed, 16 Mar 2022 14:11:54 GMT</pubDate></item><item><title><![CDATA[Reply to Plugin Feature needed on Wed, 16 Mar 2022 13:51:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ekopalypse" aria-label="Profile: ekopalypse">@<bdi>ekopalypse</bdi></a> said in <a href="/post/75203">Plugin Feature needed</a>:</p>
<blockquote>
<p dir="auto">if it was running on the main thread</p>
</blockquote>
<p dir="auto">I thought Notepad++ was single-threaded, mainly because, until quite recently, Scintilla was not multi-thread capable?  (I could be wrong about some/all of this).  Of course, things can be changed (beauty of s/w).</p>
]]></description><link>https://community.notepad-plus-plus.org/post/75204</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/75204</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Wed, 16 Mar 2022 13:51:28 GMT</pubDate></item><item><title><![CDATA[Reply to Plugin Feature needed on Wed, 16 Mar 2022 13:44:41 GMT]]></title><description><![CDATA[<p dir="auto">It would if it was running on the main thread, but I suppose it could also run in the background on another thread or asynchronously.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/75203</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/75203</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Wed, 16 Mar 2022 13:44:41 GMT</pubDate></item><item><title><![CDATA[Reply to Plugin Feature needed on Wed, 16 Mar 2022 13:38:14 GMT]]></title><description><![CDATA[<p dir="auto">This feature would be kind of cool, but wouldn’t it potentially cause performance problems because on a <em>Find Next</em> it would have to find all occurrences in a possibly huge file?</p>
<p dir="auto">The same possibility presents itself for a “Found X of Y” feature, as mentioned <a href="https://github.com/notepad-plus-plus/notepad-plus-plus/issues/11118" rel="nofollow ugc">HERE</a>.</p>
<p dir="auto">It seems like with the recent addition of better huge file support, some of Notepad++'s features need to be restricted (i.e., turned off) if the user is currently in such a file.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/75202</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/75202</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Wed, 16 Mar 2022 13:38:14 GMT</pubDate></item><item><title><![CDATA[Reply to Plugin Feature needed on Wed, 16 Mar 2022 13:36:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: alan-kilborn">@<bdi>alan-kilborn</bdi></a> said in <a href="/post/75198">Plugin Feature needed</a>:</p>
<blockquote>
<p dir="auto">VS IDE</p>
</blockquote>
<p dir="auto">Well … You know my relationship with VS IDE … don’t you :-D</p>
]]></description><link>https://community.notepad-plus-plus.org/post/75201</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/75201</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Wed, 16 Mar 2022 13:36:06 GMT</pubDate></item><item><title><![CDATA[Reply to Plugin Feature needed on Wed, 16 Mar 2022 13:34:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dail" aria-label="Profile: dail">@<bdi>dail</bdi></a></p>
<p dir="auto">cool thx, makes it easier to play with :-) I haven’t done anything with scrollbars yet either, to be honest I usually disable them :-)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/75200</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/75200</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Wed, 16 Mar 2022 13:34:39 GMT</pubDate></item><item><title><![CDATA[Reply to Plugin Feature needed on Wed, 16 Mar 2022 13:31:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ekopalypse" aria-label="Profile: ekopalypse">@<bdi>ekopalypse</bdi></a> said in <a href="/post/75197">Plugin Feature needed</a>:</p>
<blockquote>
<p dir="auto">that would require some maths to calculate the actual position with the clicked position</p>
</blockquote>
<p dir="auto">The math part isn’t not too bad actually. Just translate a line number into a Y position. For example:</p>
<p dir="auto"><a href="https://github.com/dail8859/NotepadNext/blob/3268c8e76f99af6a983ac2f202c712529248ec34/src/NotepadNext/decorators/HighlightedScrollBar.cpp#L120-L129" rel="nofollow ugc">https://github.com/dail8859/NotepadNext/blob/3268c8e76f99af6a983ac2f202c712529248ec34/src/NotepadNext/decorators/HighlightedScrollBar.cpp#L120-L129</a></p>
<p dir="auto">I don’t know how to do this with Win32 scrollbars but in theory should be possible.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/75199</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/75199</guid><dc:creator><![CDATA[dail]]></dc:creator><pubDate>Wed, 16 Mar 2022 13:31:01 GMT</pubDate></item><item><title><![CDATA[Reply to Plugin Feature needed on Wed, 16 Mar 2022 13:30:46 GMT]]></title><description><![CDATA[<p dir="auto">BTW, as an afterthought, I really have no idea what ALL of the different colors in the VS IDE scrollbar actually are.</p>
<p dir="auto">I think maybe what my screenshot shows with the light green is a “smart highlighting” feature, and the orange color is the actual search data?  Not sure…</p>
]]></description><link>https://community.notepad-plus-plus.org/post/75198</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/75198</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Wed, 16 Mar 2022 13:30:46 GMT</pubDate></item><item><title><![CDATA[Reply to Plugin Feature needed on Wed, 16 Mar 2022 13:18:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: alan-kilborn">@<bdi>alan-kilborn</bdi></a></p>
<p dir="auto">Aahh I see :-)<br />
I had understood it to mean that the RESULT is displayed in a scroll bar, not just a marker pointing to the line with the result highlighted :-)<br />
Interesting … the click position in a margin is usually tied to the row … that would require some maths to calculate the actual position with the clicked position … hmm …</p>
]]></description><link>https://community.notepad-plus-plus.org/post/75197</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/75197</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Wed, 16 Mar 2022 13:18:34 GMT</pubDate></item><item><title><![CDATA[Reply to Plugin Feature needed on Wed, 16 Mar 2022 11:09:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ekopalypse" aria-label="Profile: ekopalypse">@<bdi>ekopalypse</bdi></a> said in <a href="/post/75184">Plugin Feature needed</a>:</p>
<blockquote>
<p dir="auto">Can you point to an IDE that does what is discussed here?<br />
Perhaps you could post a screenshot showing this action?</p>
</blockquote>
<p dir="auto">How about Visual Studio IDE?:</p>
<p dir="auto"><img src="/assets/uploads/files/1647428916788-4852c476-d364-4275-8700-518b77c0dcfb-image.png" alt="4852c476-d364-4275-8700-518b77c0dcfb-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.notepad-plus-plus.org/post/75186</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/75186</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Wed, 16 Mar 2022 11:09:00 GMT</pubDate></item><item><title><![CDATA[Reply to Plugin Feature needed on Wed, 16 Mar 2022 10:42:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/scott-larson" aria-label="Profile: scott-larson">@<bdi>scott-larson</bdi></a></p>
<p dir="auto">Can you point to an IDE that does what is discussed here?<br />
Perhaps you could post a screenshot showing this action?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/75184</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/75184</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Wed, 16 Mar 2022 10:42:05 GMT</pubDate></item><item><title><![CDATA[Reply to Plugin Feature needed on Tue, 15 Mar 2022 22:48:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bruno-bobichon" aria-label="Profile: bruno-bobichon">@<bdi>bruno-bobichon</bdi></a> said in <a href="/post/43868">Plugin Feature needed</a>:</p>
<blockquote>
<p dir="auto">Hi,</p>
<p dir="auto">I’m looking for a ‘search / research’ plugin feature, showing searching result in the vertical scroll bar of the document.<br />
When i’m searching for an exprssion into a doc, expression found are highligted, but we are obliged to scroll all the document to quickly see where expression is used.<br />
On certain IDE, results are shown in the scroll bar too, represented by colored lines and as the scroll bar represent the complete document, it’s quick and easy to identify where expressions are used.</p>
<p dir="auto">Is a such plugin already exists ? and if not , will it be possilb eto devleopp it ?</p>
<p dir="auto">Many thanks</p>
</blockquote>
<p dir="auto">I would also love this feature.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/75178</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/75178</guid><dc:creator><![CDATA[Scott Larson]]></dc:creator><pubDate>Tue, 15 Mar 2022 22:48:19 GMT</pubDate></item><item><title><![CDATA[Reply to Plugin Feature needed on Wed, 29 May 2019 08:42:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bruno-bobichon" aria-label="Profile: Bruno-BOBICHON">@<bdi>Bruno-BOBICHON</bdi></a></p>
<p dir="auto">the chances of getting this feature implemented is higher, if you file a request to a plugin developer.<br />
we are currently on hold to implement new features at the notepad++ core itself.<br />
we are focusing on improving existing features and stability, and there’s much to do at the moment.</p>
<p dir="auto">many thanks and best regards.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/43928</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/43928</guid><dc:creator><![CDATA[Meta Chuh]]></dc:creator><pubDate>Wed, 29 May 2019 08:42:53 GMT</pubDate></item><item><title><![CDATA[Reply to Plugin Feature needed on Wed, 29 May 2019 08:30:40 GMT]]></title><description><![CDATA[<p dir="auto">I’ve found this morning a plugin including with this functionality but not matching in totality the behavior i excpect, it’s  ‘jn-npp-plugin’</p>
<p dir="auto">The scroll bar is enhanced when a text is highlighted, but the scroll bar represent only the part of code visible at the screen.<br />
but it’s may be a good point of start…</p>
<p dir="auto">But i’ll ask for a feature request .</p>
]]></description><link>https://community.notepad-plus-plus.org/post/43926</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/43926</guid><dc:creator><![CDATA[Bruno BOBICHON]]></dc:creator><pubDate>Wed, 29 May 2019 08:30:40 GMT</pubDate></item><item><title><![CDATA[Reply to Plugin Feature needed on Wed, 29 May 2019 07:59:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bruno-bobichon" aria-label="Profile: Bruno-BOBICHON">@<bdi>Bruno-BOBICHON</bdi></a></p>
<p dir="auto">I know that my suggestion is only a workaround. I provided it since you can not expect that this feature gets implemented in Notepad++ in the near future (if it will be ever).</p>
<p dir="auto">But if you want you can file a feature request. <a href="https://notepad-plus-plus.org/community/topic/15741/faq-desk-feature-request-or-bug-report" rel="nofollow ugc">&gt;&gt;&gt; Learn here &lt;&lt;&lt;</a> how to do that.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/43922</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/43922</guid><dc:creator><![CDATA[dinkumoil]]></dc:creator><pubDate>Wed, 29 May 2019 07:59:55 GMT</pubDate></item><item><title><![CDATA[Reply to Plugin Feature needed on Wed, 29 May 2019 07:53:36 GMT]]></title><description><![CDATA[<p dir="auto">;)  thx but, this tips doesn’t show me a graphical view allowing me to quickly see where are located the expression in the code  i’m searching either not showing me the density of the occurrence…</p>
<p dir="auto">Like shown in this screenshoot exemple :<br />
[<a href="https://forum.sublimetext.com/t/get-enhanced-scrollbar/33672/4" rel="nofollow ugc">https://forum.sublimetext.com/t/get-enhanced-scrollbar/33672/4</a>](link url)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/43920</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/43920</guid><dc:creator><![CDATA[Bruno BOBICHON]]></dc:creator><pubDate>Wed, 29 May 2019 07:53:36 GMT</pubDate></item><item><title><![CDATA[Reply to Plugin Feature needed on Mon, 27 May 2019 11:29:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bruno-bobichon" aria-label="Profile: Bruno-BOBICHON">@<bdi>Bruno-BOBICHON</bdi></a></p>
<p dir="auto">What’s about <code>(menu) Search -&gt; Find (Volatile) Next</code> (standard keyboard shortcut <code>CTRL+ALT+F3</code>) and <code>(menu) Search -&gt; Find (Volatile) Previous</code> (standard keyboard shortcut <code>CTRL+ALT+SHIFT+F3</code>)?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/43874</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/43874</guid><dc:creator><![CDATA[dinkumoil]]></dc:creator><pubDate>Mon, 27 May 2019 11:29:34 GMT</pubDate></item></channel></rss>