Jakub Chrzanowski

Results 23 issues of Jakub Chrzanowski

For now, it is possible to create folding rules from scratch only. It should be possible to reuse an existing set of rules from an external ignore-like file, like `.gitignore`...

enhancement

Introduce a possibility to create multiple named folders – not only the default one: `Folded files: #`, but also custom ones that you may define on your own. Each named...

enhancement

Check if used Kotlin version matches the bundled one. TODO: - [ ] cover with integration tests - [ ] extend docs with explanation about `compileKotlin.kotlinOptions.apiVersion` - [ ] make...

Provide a complete list of dependencies that the Gradle IntelliJ Plugin requires for running tasks. Such a list could be used for preparing an offline Gradle cache archive so one...

enhancement
new-dependencies-management

Introduce a new check for checking if the major part of the `platformVersion` isn't higher than the `sinceBuild`. Reason: SDK may bring incompatibility changes between major versions. When targeting higher...

enhancement

It would be nice if we could describe some fields with `@ContextVariable` in the parent class. For example: ``` class FooStep extends HszWizardStep { @ContextVariable protected String foo; } class...

enhancement

Let's assume we've got this simple implementation: ``` public class ProfileWizardFragment extends WizardFragment { @Override public void onStepChanged() { super.onStepChanged(); Log.d("onStepChanged()", String.valueOf(wizard.getCurrentStepPosition())); } @OnClick(R.id.next_button) public void next() { wizard.goNext(); Log.d("next()",...

bug

Is there any possibility to specify `servers` section for the generated documentation? Some docs: - https://swagger.io/docs/specification/basic-structure/ - https://swagger.io/docs/specification/api-host-and-base-path/