Andre

- Total activity 95
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 30
-
Created RubyMine doesn't honour the pre-loader default configuration
I've been trying to change the pre-loader defaults for rspec and cucumber with no luck. I tried to change the default to None or Zeus but RubyMine still uses Spring.Run > Edit Configurations... > D... -
Created RubyMine 8: No colours on Terminal
After updating to RubyMine the terminal don't show any colours. I'm using zsh and oh-my-zsh on Mac Yosemite 10.10.5.I have attached tow images that show the behaviour.Outside RubyMine:Inside RubyMine: -
Created How to use JavaCodeInsightFixtureTestCase
AnsweredHi,I've been trying to create a very simple test case for my plugin but no luck so far.This is my test case:@TestDataPath("testData/")public class FormatterActionHandlerTest extends JavaCodeInsight... -
Created How to implement "go to to implementation"
Hi,I would like to implement something similar to the "go to implementation" action. The idea is to have an icon displayed on the left side of the editor and to go to to a specific class/method whe... -
Created Changing method order declaration in a class
Hi,How can I change the order of two PsiMethod in a class?Thanks,Andre -
Created Invoking ReformatCodeAction programmatically without the dialog
Hi,This is the code that I use to invoke the "Reformat Code" action progamatically:ReformatCodeAction reformatAction = (ReformatCodeAction) ActionManager.getInstance().getAction(IdeActions.ACTIO... -
Created Indent methods hierarchically
Hi,I'm trying to indent my methods hierarquically. For example, this code:public void methodA() { methodB();}private void methodB() {}Has to be formmated to this (methodB indented one level):publ... -
Created Sequence diagrams and GraphAPI (almost done)
Hi Serega,My sequence diagram is almost done (see attached picture), but I still have some important questions abou Graph API (the deadline is today):- Edges become crazy when source e target nodes... -
Created Drawing lines/edges using Graph API
Hi all,Is it possible to draw lines or edges without connecting two nodes? for example, in sequence diagrams the life line is a vertical line connecting one class (Node) only.How can I do it?Thanks... -
Created Can't unwrap interface: interface a.f.ec on Graph API
I adapted a layouter example (from http://www.yworks.com/products/yfiles/doc/demo/layout/DiagonalLayouter.java.html) and created a class named DiagramLayouter. Now, when I try to use it I enconter ...