Sergio Castro
- 活动总数 58
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 2
- 订阅数 20
-
创建于 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 ... -
创建于 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... -
创建于 How to make my plugin to highlight a matching parenthesis in the editor of a language
已回答I 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... -
创建于 Problem browsing to Spring bean configuration in IntelliJ 15.0.3 Ultimate Edition
已回答I 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... -
创建于 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... -
创建于 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... -
创建于 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... -
创建于 Impossible to debug "Warning: no executable code found at line"
已回答I 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 ... -
创建于 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... -
创建于 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...