How navigat from gutter to a new editor tab?

Now I add a gutter icon,I want to navigat to a new tab which contains a JxBrower. How to development this tab and how to jump to tab from gutter?

0
1 comment

In your GutterIconRenderer you can implement 'getClickAction' to perform arbitrary action when user clicks on corresponding icon.

When you need to open a new tab, you generally invoke some 'open' method on FileEditorManager. If you need some a custom implementation of tab contents, you'll need to register your own FileEditorProvider and create your own FileEditor implementation (which will contain JxBrowser).

0

Please sign in to leave a comment.