|
JumpToCodePlugin
#The JumpToCodePlugin for IntelliJ IDEA IntroductionThe JumpToCode plugin waits for requests from external programs to jump to a specific source location. The idea is that log-file viewers like Chainsaw and Vigilog interact with this plugin. When viewing a log-entry or stacktrace in Vigilog, users can click on a location and make IDEA jump to the corresponding location in the source code. Current version of Vigilog (1.3.1) can communicate with IDEA via this plugin. see http://vigilog.sourceforge.net/
DetailsThis info is only for people that want to integrate with the plugin. If you just want to use the plugin, installing it should be enough. --- The plugin features an very simple embedded HTTP server. By default it listens on port 5986. But that's configurable of course. It understands only three operations:
ParametersThe following parameters are recognized:
className is only used when packageName and/or fileName is missing. It's preferable to use packageName + fileName + lineNumber Examples:http://localhost:5986/?o=jump&p=java.lang&f=String.java&l=120 http://localhost:5986/?p=java.lang&f=String.java&l=120 => jump to line 120 of java.lang.String http://localhost:5986/?o=test&p=com.googlecode.firewood&f=Foo.java&l=120 => test if file Foo.java in package com.googlecode.firewood is known to IDEA |
Sign in to add a comment