Reputation:
I usually use Notepad++ to read open source, but I don't know how to jump to a definition or jump back previous position. How do I do that?
Upvotes: 5
Views: 13725
Reputation: 63
Install SourceCookifier plugin from plugin manager.
Open the file which you want to edit.
Click on the function name or struct name (place the pointer in between the name)
PressCTRL+SHIFT+ENTER
This will send you to the definition (or shows a drop down menu for definitions if function overloading is implemented from which you can select) .
Upvotes: 1
Reputation: 3225
I know this is an ancient question, but Notepad++ has View -> Function List now. Doesn't work across files, but most of the other plugins I tried I had lots of problems getting working.
Upvotes: 4
Reputation: 3948
I'm using the SourceCookifier plugin for this. The file containing the definition must be open in N++. Going back is just CTRL+SHIFT+TAB.
Upvotes: 5