How do I jump to a definition (function definitions, struct definitions, ...) in Notepad++
I usually use Notepad++ to read open source, but I don't know how to jump to a definition or jum开发者_运维技巧p back previous position. How do I do that?
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.
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.
TagsJump works fine: http://sourceforge.net/projects/tagsjump/
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)
Press
CTRL+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) .
精彩评论