TextMate for Java / Maven Development

Is anyone doing Java / Maven development using TextMate? Any package I can use for it? I know regular packages for Maven and Java (for generating part of the code), but are there any bundles to help enumerate class methods? (e.g. Eclipse / Netbeans / etc.). And not the current class methods, but they say that I have FirstDemo.java, which has the demo (String a) and demoThis (String a, int b) methods.

In SecondDemo.java, I want to print a new FirstDemo (). [click here] and see a list of demos (String a) and demoThis (String a, int b) so I can choose from them.

Can I do something like this?

Thanks!

+3
source share
2 answers

I do not think so. If you want something more complex, you will need a real IDE or JEdit with some plugins.

0
source

Source: https://habr.com/ru/post/1719326/


All Articles