Guno Heitman
- Total activity 74
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 22
-
Edited LineMarkerProvider navigating to multiple targets
AnsweredHi Jetbrains,In this post I learned that I could use com.intellij.database.view.DbNavigationUtils#navigateToData(com.intellij.database.psi.DbElement, boolean) to navigate to the database grid from ... -
Created Navigating to Database Grid from Line Marker Provider
AnsweredHi JetBrains,In my plugin I'm implementing a LineMarkerProvider to navigate from a Java source file to the database grid of a related database table. So far I've been able to navigate to the table'... -
Created Testing custom JS inspections
AnsweredHi there, I'm writing a test class for my custom Javascript inspection (extending JSInspection), but I'm having some trouble there. Perhaps someone over here can give me some tips. The issue is tha... -
Created Update classes and resources in Gradle project
AnsweredHi there, When I've got a Gradle-based web application running in Tomcat (in debug mode), IntelliJ gives me the option to 'Update classes and resources'. When I invoke this action, it looks like In... -
Created Custom activity after VCS refresh
Hi, Is there some way to hook in my own Activity upon VCS refresh completion?Something similar to com.intellij.openapi.startup.StartupActivity perhaps; though that one doesn't suit my needs. What I... -
Created Project settings vs IDE settings
AnsweredHi, I'm a bit confused about the distinction between project settings and IDE settings in IntelliJ. Up until recently, I assumed that project settings were specific for a project, i.e. could have d... -
Created Referencing class from String in dependency project
Hi, Say I've got some Strings in project A containing fully qualified class names of classes in project B.Say project B has a dependency to project A, but not the other way around. During runtime, ... -
Created Navigating from reference using definitionsScopedSearch
Hi there, I've implemented a <definitionsScopedSearch> that allows me to use ctrl-alt-b to navigate from a field in a Java class to another field in a related Java class. This is working quite nice... -
Created Line marker for folded code block
Hi,I was wondering if it is possible to add a line marker for a code block that has been folded.I've added line markers from my custom line marker provider, but these disappear as soon as the speci... -
Created Stop on first error when running a (DB2) database script
Hello,I was wondering if it is possible to stop executing a database script (DB2 in my case) as soon as an error occurs.If I run an SQL script against my DB2 databse from within IntelliJ, the whole...