<?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[Reverse Lines]]></title><description><![CDATA[<p dir="auto">Here is a plugin that does reverse lines but it is not complied:<br />
<a href="https://github.com/querykuma/qkNppReverseLines" rel="nofollow ugc">https://github.com/querykuma/qkNppReverseLines</a></p>
<p dir="auto">Is there any plugin available for end user that does reversing text?</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/22580/reverse-lines</link><generator>RSS for Node</generator><lastBuildDate>Mon, 13 Apr 2026 18:10:40 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/22580.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 16 Feb 2022 11:43:05 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Reverse Lines on Tue, 24 Oct 2023 16:59:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/14847">@Michael-Vincent</a> <a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/24534">@zhivkov007</a> 32bit version has been ported to a 64bit : <a href="https://github.com/mrt-prodz/NPP-Reverse-Text/issues/4" rel="nofollow ugc">https://github.com/mrt-prodz/NPP-Reverse-Text/issues/4</a></p>
]]></description><link>https://community.notepad-plus-plus.org/post/90061</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/90061</guid><dc:creator><![CDATA[freezer2022]]></dc:creator><pubDate>Tue, 24 Oct 2023 16:59:20 GMT</pubDate></item><item><title><![CDATA[Reply to Reverse Lines on Wed, 16 Feb 2022 16:53:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/24534">@zhivkov007</a> said in <a href="/post/74266">Reverse Lines</a>:</p>
<blockquote>
<p dir="auto">This one<br />
<a href="https://github.com/mrt-prodz/NPP-Reverse-Text" rel="nofollow ugc">https://github.com/mrt-prodz/NPP-Reverse-Text</a></p>
</blockquote>
<p dir="auto">Looks like that plugin hasn’t been touched in 7+ years and with the changes to N++ / Scintilla API between now and then - AND the recent (January 2022) breaking changes regarding support for &gt;2Gb files … and what this plugin does with “text ranges” - I’m going out on a limb (without testing the compilation myself) that compiling it may fail and even if it does compile, it certainly won’t work with current versions of Notepad++ without a serious overhaul.</p>
<p dir="auto">That said, you don’t need to “know” Python to use <a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@Alan-Kilborn</a> 's script, you just need to install the PythonScript plugin.</p>
<p dir="auto">Cheers.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74271</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74271</guid><dc:creator><![CDATA[Michael Vincent]]></dc:creator><pubDate>Wed, 16 Feb 2022 16:53:08 GMT</pubDate></item><item><title><![CDATA[Reply to Reverse Lines on Wed, 16 Feb 2022 12:59:14 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><br />
I can’t use Python. :(</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74268</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74268</guid><dc:creator><![CDATA[zhivkov007]]></dc:creator><pubDate>Wed, 16 Feb 2022 12:59:14 GMT</pubDate></item><item><title><![CDATA[Reply to Reverse Lines on Wed, 16 Feb 2022 12:54:04 GMT]]></title><description><![CDATA[<p dir="auto">@djurzivk</p>
<p dir="auto">If you are going to use a plugin, why not use PythonScript instead, example:</p>
<pre><code># -*- coding: utf-8 -*-
from __future__ import print_function

from Npp import *

(start_line, end_line) = editor.getUserLineSelection()
for line_nbr in range(start_line, end_line + 1):
    line_contents = editor.getLine(line_nbr).rstrip("\n\r")
    line_contents = line_contents[::-1]  # reverse string
    print(line_contents)
</code></pre>
]]></description><link>https://community.notepad-plus-plus.org/post/74267</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74267</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Wed, 16 Feb 2022 12:54:04 GMT</pubDate></item><item><title><![CDATA[Reply to Reverse Lines on Wed, 16 Feb 2022 12:41:57 GMT]]></title><description><![CDATA[<p dir="auto">This one<br />
<a href="https://github.com/mrt-prodz/NPP-Reverse-Text" rel="nofollow ugc">https://github.com/mrt-prodz/NPP-Reverse-Text</a></p>
]]></description><link>https://community.notepad-plus-plus.org/post/74266</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74266</guid><dc:creator><![CDATA[zhivkov007]]></dc:creator><pubDate>Wed, 16 Feb 2022 12:41:57 GMT</pubDate></item><item><title><![CDATA[Reply to Reverse Lines on Wed, 16 Feb 2022 12:40:52 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><br />
Ah you are right, it doesn’t reverse the text. Sorry for the confussion.<br />
<a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/14847">@Michael-Vincent</a><br />
Yes, I need to reverse (selected) text, not lines.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74265</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74265</guid><dc:creator><![CDATA[zhivkov007]]></dc:creator><pubDate>Wed, 16 Feb 2022 12:40:52 GMT</pubDate></item><item><title><![CDATA[Reply to Reverse Lines on Wed, 16 Feb 2022 12:30:52 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><br />
This does not the same. This plugin inverts the text.<br />
text --&gt; txet</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74264</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74264</guid><dc:creator><![CDATA[zhivkov007]]></dc:creator><pubDate>Wed, 16 Feb 2022 12:30:52 GMT</pubDate></item><item><title><![CDATA[Reply to Reverse Lines on Wed, 16 Feb 2022 12:30:07 GMT]]></title><description><![CDATA[<p dir="auto">@djurzivk</p>
<p dir="auto">Is there some value in the plugin when the functionality is native in Notepad++?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74263</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74263</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Wed, 16 Feb 2022 12:30:07 GMT</pubDate></item><item><title><![CDATA[Reply to Reverse Lines on Wed, 16 Feb 2022 12:21:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/14847">@michael-vincent</a><br />
Ah, I see it is complied. Thanks!</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74262</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74262</guid><dc:creator><![CDATA[zhivkov007]]></dc:creator><pubDate>Wed, 16 Feb 2022 12:21:42 GMT</pubDate></item><item><title><![CDATA[Reply to Reverse Lines on Wed, 16 Feb 2022 12:10:37 GMT]]></title><description><![CDATA[<p dir="auto">@djurzivk said in <a href="/post/74258">Reverse Lines</a>:</p>
<blockquote>
<p dir="auto">Here is a plugin that does reverse lines but it is not complied:</p>
</blockquote>
<p dir="auto">It is compiled:</p>
<p dir="auto"><a href="https://github.com/querykuma/qkNppReverseLines/releases" rel="nofollow ugc">https://github.com/querykuma/qkNppReverseLines/releases</a></p>
<p dir="auto">and it’s in the Plugin Admin to install nicely:</p>
<p dir="auto"><img src="/assets/uploads/files/1645013433922-f04dfe0c-8d9c-4f75-ab38-a64f58eeb7ee-image.png" alt="f04dfe0c-8d9c-4f75-ab38-a64f58eeb7ee-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Cheers.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74260</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74260</guid><dc:creator><![CDATA[Michael Vincent]]></dc:creator><pubDate>Wed, 16 Feb 2022 12:10:37 GMT</pubDate></item><item><title><![CDATA[Reply to Reverse Lines on Wed, 16 Feb 2022 12:09:47 GMT]]></title><description><![CDATA[<p dir="auto">@djurzivk</p>
<p dir="auto">No plugin needed if you use Notepad++ 8.0 or later.</p>
<p dir="auto"><img src="/assets/uploads/files/1645013379805-30af560b-bc41-4c8d-8e71-078a06120981-image.png" alt="30af560b-bc41-4c8d-8e71-078a06120981-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.notepad-plus-plus.org/post/74259</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74259</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Wed, 16 Feb 2022 12:09:47 GMT</pubDate></item></channel></rss>