Sergio Castro
- Total activity 58
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 20
-
Created Customizing Groovy version in Gradle when using the idea plugin
I am using Gradle in an IntelliJ plugin project. I was having conflicts related to Groovy versions used by certain dependencies (e.g., Spock). So I tried to explicitly set the Groovy version in my ... -
Created How to match tokens according to both their textual values and types in Grammar-Kit
I am writing a plugin for Logtalk (a Prolog like language). Given the nature of the language, in Grammar-Kit I need to match certain tokens (called "left operators" in my language) according to bot... -
Created How to make my plugin to highlight a matching parenthesis in the editor of a language
AnsweredI have just written my first plugin. Right now it is just a syntax highlighter for the Prolog/Logtalk languages. These languages have lots of parentheses, brackets and braces. Could someone point m... -
Created Problem browsing to Spring bean configuration in IntelliJ 15.0.3 Ultimate Edition
AnsweredI am using Spring boot.From the Spring bean configurations I do have at the left an icon that will take me to all the possible autowired candidates. However, this does not work the other way around... -
Created Visualizing method calls in a project
I am wondering if IntelliJ provides a mechanism for visualizing method calls in a project.I know I can see a call hierarchy for a particular method (as in https://www.jetbrains.com/pycharm/help/bui... -
Created Naming convention for IntelliJ project & module names?
A simple question:Is there any recommended naming convention for the names of IntelliJ projects and their modules?For example, is "my-project" preferred over "my_project" for project or module name... -
Created Problem with dependencies when importing modules from another IntelliJ project
I have an IntelliJ project A composed of several Maven modules.I have another IntelliJ project B also composed of several Maven modules.I need to import few modules from project B into project A, s... -
Created Impossible to debug "Warning: no executable code found at line"
AnsweredI am using the maven jetty plugin to run and debug an IntelliJ module.If I modify one class, which is located in another module in the same project, I cannot set breakpoints anymore.In fact, I can ... -
Created How to observe immediately compilation problems in distinct modules
Scenario:I have a Maven multi-module project.I changed the name of a method without using the refactoring utility. The method was used for another module so the project was not compilable anymore.P... -
Created showing warning when declaring raw types
In Eclipse I see a warning in the editor each time I declare a raw type like:List l = null;instead ofList<MyClass> l = nullI am missing this feature. How can I activate the same behavior in Intelli...