Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rockscroll like plugin for notepad++?

Is there a plugin like Rockscoll for VisualStudio for notepad++ ? Atleast anything close to it ?

Thanks.

like image 252
madan kandula Avatar asked Mar 13 '13 08:03

madan kandula


People also ask

What is a Notepad ++ plugin?

Notepad++ plugins is a collection of tools which plays a role of completion for Notepad++. This project contains Explorer, Function List, Hex Editor, Spell Checker and a console program NppExec. Other plugin developers are invited to share their projects.

What is the use of Find Next in notepad?

Click Edit > Find in the menu bar, or press the CTRL + F keys. Press Find next. The text you are searching for will be highlighted. Continue pressing Find next until you see cannot find text.

How do I add a snippet to Notepad ++?

To insert a snippet simply double click on the item in the list and the snippet is inserted at the current cursor position. When you switch to another document with another language the snippets for that new language are read from the database. To add or edit a snippet, right-click the snippet in the list and edit.


2 Answers

It's built-in:

View -> Document Map

screenshot

like image 177
Blorgbeard Avatar answered Oct 20 '22 19:10

Blorgbeard


You can use SmartHighlighter. This answer is from the https://github.com/notepad-plus-plus/notepad-plus-plus/issues/3116

Steps

  1. Download the latest release of the plugin from https://github.com/sieukrem/jn-npp-plugin/releases

    • If notepad++ folder is in C:\Program Files (x86)\Notepad++ download the file with _x86.zip suffix

    • If notepad++ folder is in C:\Program Files\Notepad++ download the file with _x64.zip suffix

      From here on if your installation is in C:\Program Files (x86)\Notepad++ just replace C:\Program Files\Notepad++. Procedure is same in both cases.

  2. Create a new folder at C:\Program Files\Notepad++\plugins with name jN
  3. Extract the contents of the downloaded zip file to C:\Program Files\Notepad++\plugins\jN
  4. Optionally, jN plugin includes other components also. So to disable all components of the jN plugin except for Smart Highlighter, Go to C:\Program Files\Notepad++\plugins\jN\includes and keep only below files:

    Dialog.js  
    MenuCmds.js  
    SmartHighlighter.js  
    

    and move the rest of the .js files to disabled folder.
    C:\Program Files\Notepad++\plugins\jN\includes\disabled

  5. Now close and reopen your Notepad++.
  6. Now try selecting a repeated word and check the bar next to your scrollbar. That's it.
like image 24
Rijul Sudhir Avatar answered Oct 20 '22 18:10

Rijul Sudhir