<?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[Make list of names clickable?]]></title><description><![CDATA[<p dir="auto">Hi i have a list of about 100 names in .txt file,it is possible to make them clickable?</p>
<p dir="auto">so if i click a name it open the corresponding txt file with the same name on a new tab?<br />
try to search but all i get is html hyperlink, and i don’t want to open the browser,just a new tab on notepad++</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/10827/make-list-of-names-clickable</link><generator>RSS for Node</generator><lastBuildDate>Sun, 14 Jun 2026 18:58:59 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/10827.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 16 Nov 2015 22:07:21 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Make list of names clickable? on Fri, 20 Nov 2015 16:55:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/guy038" aria-label="Profile: guy038">@<bdi>guy038</bdi></a> Thankyou ,that worked!</p>
<p dir="auto">Anyway to hide the skeleton code?</p>
<p dir="auto">sorry been trying to reply with proper code block for the past 2 hours but can’t,keep getting:<br />
Post content was flagged as spam by <a href="http://Akismet.com" rel="nofollow ugc">Akismet.com</a></p>
]]></description><link>https://community.notepad-plus-plus.org/post/12178</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/12178</guid><dc:creator><![CDATA[Greeberet]]></dc:creator><pubDate>Fri, 20 Nov 2015 16:55:31 GMT</pubDate></item><item><title><![CDATA[Reply to Make list of names clickable? on Tue, 17 Nov 2015 21:11:05 GMT]]></title><description><![CDATA[<p dir="auto">Hello <strong>Greeberet</strong>,</p>
<p dir="auto">Well, the problem can be split into <strong>two</strong> smaller ones :</p>
<ul>
<li>
<p dir="auto">Firstly, define the <strong>right</strong> form of an <strong>hyperlink</strong> to a file</p>
</li>
<li>
<p dir="auto">Secondly, open this file, in a <strong>new</strong> tab, from <strong>inside</strong> Notepad++</p>
</li>
</ul>
<hr />
<p dir="auto"><strong>1)</strong></p>
<p dir="auto">Let’s suppose, we have a file, named <strong>Abc.txt</strong> in the directory <strong>C:\Tools\Tests</strong>. Then the <strong>right</strong> form of a Notepad++ hyperlink, to that file, is, simply :</p>
<pre><code>file:///C:/Tools/Tests/Abc.txt
</code></pre>
<p dir="auto">Just notice, that you must <strong>insert</strong> the string <strong><code>file:///</code></strong> before the <strong>absolute</strong> path of the file, and change any <strong>backslash</strong>, found in the path, by a <strong>regular slash</strong></p>
<p dir="auto">If the <strong>path</strong> and/or the <strong>name</strong> of your file contains <strong>any</strong> character from the list below, you must <strong>change</strong> it with the corresponding <strong><code>%nn</code></strong> hexadecimal syntax</p>
<pre><code>SPACE    -&gt;    %20
  !      -&gt;    %21
  $      -&gt;    %24
  '      -&gt;    %27
  ;      -&gt;    %3b
  [      -&gt;    %5b
  ]      -&gt;    %5d
  ^      -&gt;    %5e
  `      -&gt;    %60
  {      -&gt;    %7b
  }      -&gt;    %7d
  ~      -&gt;    %7e
</code></pre>
<p dir="auto">Moreover, any character with <strong>ANSI</strong> code between <strong>\x80</strong> and <strong>\xff</strong>, and, especially, all <strong>accentuated</strong> characters, will be changed in their <strong>appropriate</strong> <strong><code>%nn</code></strong> syntax !</p>
<p dir="auto">For instance, if the <strong>name</strong> of your file is <strong><code>©'Final' chapter [of my book].txt</code></strong>, the <strong>hyperlink</strong> should be, for the <strong>same</strong> directory than above, :</p>
<pre><code>file:///C:/Tools/Tests/%a9%27Final%27%20chapter%20%5bof%20my%20book%5d.txt
</code></pre>
<hr />
<p dir="auto"><strong>2)</strong></p>
<p dir="auto">Suppose that <strong>all</strong> your files, to be opened, in N++, via <strong>hyperlinks</strong>, have a <strong>specific</strong> extension : Let’s say <strong><code>.prg</code></strong>. Then, you just have to <strong>associate</strong> this <strong>new</strong> extension to Notepad++. To do so :</p>
<ul>
<li>
<p dir="auto">Choose the Menu option <strong>Settings - Preferences - File Association</strong></p>
</li>
<li>
<p dir="auto">Select the <strong>customize</strong> entry and type your <strong>specific</strong> extension <strong><code>.prg</code></strong></p>
</li>
<li>
<p dir="auto">Click on the <strong><code>-&gt;</code></strong> button to <strong>register</strong> this extension, for N++</p>
</li>
<li>
<p dir="auto">Close the <strong>Preferences</strong> dialog</p>
</li>
</ul>
<p dir="auto">=&gt; Now, supposing that we still use the <strong>path</strong> above, each time you <strong>double</strong>-click, in any file, <strong>inside</strong> N++, on the <strong>hyperlink,</strong> below, the corresponding file <strong><code>My file.prg</code></strong> is, automatically, opened in a <strong>new</strong> tab of N++ !</p>
<pre><code>file:///C:/Tools/Tests/My%20file.prg
</code></pre>
<p dir="auto"><strong>Note</strong> :</p>
<p dir="auto">I didn’t test with a <strong>known</strong> extension ( like <strong><code>.txt</code></strong>, <strong><code>.ini</code></strong>, .<strong><code>vb</code></strong> or else ) but it should work, too ! ( Just choose the <strong>language</strong> or <strong>type</strong> first, then the wanted <strong>extension</strong> and click on the <strong><code>-&gt;</code></strong> button )</p>
<p dir="auto">Best Regards</p>
<p dir="auto">guy038</p>
]]></description><link>https://community.notepad-plus-plus.org/post/12150</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/12150</guid><dc:creator><![CDATA[guy038]]></dc:creator><pubDate>Tue, 17 Nov 2015 21:11:05 GMT</pubDate></item></channel></rss>