What editor provides highlighted and clickable hyperlinks? (similar to Notepad++)
I have about a 1000 links in my txt file and I don't want to copy paste them in my browser.
So I am looking for a text editor that highlights URLs and makes them clickable.Please note that I am looking for a text editor (like kate, sublime) and not a full IDE.
I have tried Sublime, Kate, gedit etc, but I can't figure how to highlight URLs and hyperlinks there
It's too simple, just Open Terminal by using Ctrl+Alt+T and type:
cat -n /File_Path/File_Name
With -n
option you could see the line numbers of a file "File_Name" in the output terminal for easy to understand which line you clicked last time.
If file having large number of contains (like yours) that won't fit in output terminal and screen scrolls up very fast, we can use parameters more
or less
with cat
command as show below.
cat -n /File_Path/File_Name | less
or
cat -n /File_Path/File_Name | more
Then you need to hold the Ctrl key down while left clicking to open links in a browser, or right click and select the context menu option "Open Link". enjoy
In Emacs's org-mode the URLs are highlighted.