What is TagJump

RDE can locate quickly and easily by tag files. Tag files is an index file generated by the applicaitons (ctags or rtags).

Tag files are supported by numerous editors, which allow you to locate the object associated with a name appearing in a source file and jump to the file and line which defines the name.

Usage

First. You need to make tag files. ctags or rtags generate tag files for source code. The name of tag files is generally "tags".

When press TagJump([Shift]+[F10]), RDE search the keyword on caret in "tags" files, and jump to the file and line which defines the keyword.

RDE searches a keyword in "tags" file that exists in the same directory with current editing file first.

If not found, RDE searches in other tags files that exists in the other directories that opened files on RDE exists in.

You can jump back by press TagJumpBack([Shift]+[Ctrl]+[F10]).

This is more useful by usign ctags.rb in sample scirpt

cf: FileJump([Ctrl]+[F10])

When there are some tags, TagList form show. You select the one and jump to the file and line.