Search for Ideas
Sort by:
Votes
Eclipse RCP development support
Ilya Mikhaylov
I lovein into Intellij IDEA but in our company we are now working with eclipse rcp. Provided osmorc support is not enough for that. I would like to see both Require-Bundle with Imprort-Package support with autofix missing dependencies, point to p2 repo instead of eclipse installation when import the project, generate and build product, work with targets (meaning by that autoupdate and set as target env), ect. And do not want to offence anyone but osmorc is bad and buggy and ugly - I would preffer to do everything manually.
201
35
27.04.2014
JUnit on steroids: continuous testing
Maxim Shafirov
Use case 1: Developing a plugin
Your little plugin has 1 test, that uses the IDEA test framework.
The test takes 0.02 sec, but
The tests framework takes 30 seconds to warm up
=\>
The 1-test test suite takes 30.02 seconds to complete
As it takes too long, you don't run it as frequently as you wish.
Use case 2: Long test suite
A project complete test suite takes 10 minutes to run,
but you spend the morning working on a subset - 1 class - that is directly or indirectly exercised by 3 tests, that take only 5 seconds.
Request :
Have IDEA JUnit runner run continuously, and watch file modifications. It could be triggered by file compilation, or watch for idleness (the same way as "save on idle": this could trigger an automatic background compile).
This would add a 3rd color to the JUnit progress bar, meaning "out-of-date".
At this stage, it would be trivial to add a warning :
the method/class you have just modified is not tested
`
169
3
07.02.2005
Support the SQLAlchemy object relational mapper
Andrey Vlasovskikh
SQLAlchemy is a SQL tool and object relational mapper.See also this Stack Overflow question.
166
23
13.09.2011
Export breakpoints
Ilya
Idea lacks export features; one of them is exporting breakpoints (one other could be exporting run configs).
Third-party plugin: Breakpoint Manager
139
30
08.10.2007
Add support for Ginkgo BDD Tests
Sascha Matzke
Dear users, please try out Ginkgo plugin maintained by @taylor.r.ono and @amalcontenti-wilson. It is an open-source plugin from community members, so you can contribute to it (Help me? section) or report issues and suggest features: https://github.com/IdeaGinkgo/Intellij-Ginkgo
Ginkgo (https://github.com/onsi/ginkgo) is a very popular Go BDD testing framework that integrates well with the standard Go test facilities. Include code completions, templates for standard Ginkgo test structures (Describe, Context, It...)
107
42
17.12.2016
Support for godog testing framework
Florin Pățan
As requested here: https://intellij-support.jetbrains.com/hc/en-us/community/posts/360000369830-GoLand-Cucumber-Gherkin-support-for-godog it would be great if the test runner could support Cucumber-like output from godog or other similar testing tools.
package main
import (
"fmt"
"github.com/DATA-DOG/godog"
)
func thereAreGodogs(available int) error {
Godogs = available
return nil
}
func iEat(num int) error {
if Godogs < num {
return fmt.Errorf("you cannot eat %d godogs, there are %d available", num, Godogs)
}
Godogs -= num
return nil
}
func thereShouldBeRemaining(remaining int) error {
if Godogs != remaining {
return fmt.Errorf("expected %d godogs to be remaining, but there is %d", remaining, Godogs)
}
return nil
}
func FeatureContext(s *godog.Suite) {
s.Step(^there are (\d+) godogs$, thereAreGodogs)
s.Step(^I eat (\d+)$, iEat)
s.Step(^there should be (\d+) remaining$, thereShouldBeRemaining)
s.BeforeScenario(func(interface{}) {
Godogs = 0 // clean the state before every scenario
})
}
`
98
34
03.05.2018
Rename multiple files using settings similar to Replace in Path dialog
Serge Baranov
Available solution
Regex Rename Files by bryanderidder allows to rename multiple files at the same time.
Description
The feature would add a checkbox to the "Ctrl+R+F" key combo to replace the term in the directories file names, as well as in the code.
The objective is to use the developed functionality in a directory like a template, by quickly renaming the files in a directory, as well as the references with in the code files. It would work like so: Ctrl+Shift+R displays the find-and-replace window. You enter your term and scope the search to a directory. The new feature would have a checkbox to include matched file names, along with the code file matches.
Within that the directory the code and file names would get updated with the find-and-replace.
In my case, I have a web site with a number of sub sections all very similar. Once the initial functionality was developed in one directory, I copy-n-pasted the whole directory and renamed it. I've done this 4 times, producing 4 distinct directories with identical code, containing a dozen files with identical names. Next, I ran the global find-and-replace to update the references within the code. This approach allows me to use a master directory like a template for the other sub sections, saving my colleges a decent amount of work, and reducing the customization required for each sub section.
Hope that illustrates my need clearly.
the attached screenshot shows the files already renamed, along with the find-and-replace dialog window. the window is set to change the term 'digitization'; to 'newchapter', so filesnames and code references with 'digitization' would then become 'newchapter', like so..'newchapter_pg0.html'
98
32
02.06.2013
ZK framework
Serge Baranov
Why the latest IDEA doesn't support ZK yet? It's been requested since 2007.
That is the most expecting feature Java EE developers are waiting for.
Most of them are using Eclipse, unfortunately.
There is an Eclipse plugin called "ZK Studio", and I would like to have similar functionality.
Of course, the smart approach JetBrains always does is preferable.
UI component pallet to put them in the zul XML. WYSIWYG is not required, but a preview must be there to check the look and feel
UI component properties pane to edit
ZK library version should be selectable
App server integration is better to run the app without run ant script or something
87
27
09.11.2010
Add a way to restore old UI icons
Tamir Bahar
I find the new UI icons in the project view much less readable (specifically the folder icons).
The same-color-except-outline style means that the color is less impactful. This means that it takes me longer to find what I'm looking for based on the folder colors.
Would be nice to be able to use the old icons with the new UI.
Thanks!
79
28
23.06.2022
Jasper Reports / Jaspersoft Studio Plugin
Daniel van der Valk
I am curious if you plan a plugin or an integration for Jasper Reports or Jaspersoft Studio. I'd really like to see jasper report editing, designing, and compiling on IntelliJ. Since you offer Android Studio with a designing tool for Android UI, it can't be hard to do the same for jasper reports.
https://community.jaspersoft.com/questions/1086931/intellij-idea-plugin
We try only to use one tool to do all our work, and we would love to only use IntelliJ IDEA instead of switching back and forth to eclipse to just "design" a report.
78
7
12.06.2018
GitLab Continous Integration
Vincent Kovács
Support GitLab's Continous Integrations http://doc.gitlab.com/ci/api/README.html
See currently running builds, failed builds, succeeded builds, etc.
As I know, GitLab CI is based on https://travis-ci.org/.
78
5
02.11.2015
jBPM 5 support feature
Krzysztof Miksa
It would be nice if IntelliJ IDEA will be support jBPM 5Minimal support: syntax highlighting for BPMN 2.0 and jPDL graphical designer integration with Drools Rules http://www.jboss.org/jbpm/
74
42
19.10.2011