Notepad++ like editor for linux which highlights words on right clicking [closed]
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this questionSorry for the extremely bad title. What I'm looking for is the notepad++ feature where I can highlight words on right clicking and choosing one of the 5 styles (so that all instances of that word get highlighted with that color), in some editor in linux (Red hat). I know this might be a stupid request, but I find that it helps me in understanding new code.
Thanks
SciTE can do this. After you install it, create a script named SciTEStartup.lua in your home directory and add the following line in your ~/.SciTEUser.properties file:
ext.lua.startup.script=$(SciteUserHome)/SciTEStartup.lua
After that you can install this script as described and see all occurrences of a word using Ctrl+. (Ctrl+, to clear).
The default editor Gedit does this with an additional plug-in installed from here: https://github.com/mmuell23/mmuell23
精彩评论