Karol Lewandowski
Karol Lewandowski
Current status: the problem is in `buildSearchableOptions` on Windows systems. It can be easily reproduced locally (I did it with Windows running on VirtualBox). For some reason, the started IDE...
I'm not sure that not quoted values are fully supported in Sightly. I'm playing with it now and here are results: ```html // OK, prints "15" // OK, prints "true"...
It requires to sign the Adobe CLA, but the page it should be done at doesn't work for me: ``` Device Verification Error client cert not provided ```
> This potentially means we should now recommend the usage of data-sly-set when possible. I would rather say: only when absolutely needed.
I meant overusing it for defining variables for very simple cases like: ``` ${details.name} ${details.price} ``` I think that such code should be preferred: ``` ${product.details.name} ${product.details.price} ``` So in...
Please replace your MockMaker config file: - `jenkins-control-plugin/src/test/resources/mockito-extensions` (simply remove it) with the `mockito-inline` artifact: - replace `'org.mockito:mockito-core:4.7.0'` with `'org.mockito:mockito-inline:4.7.0'` See: https://javadoc.io/doc/org.mockito/mockito-core/latest/org/mockito/Mockito.html#mockito-inline I'm not sure how the recent changes caused...
The issue seems to be caused by this change: - https://github.com/JetBrains/gradle-intellij-plugin/commit/47bbfbaa361714cfe19432350954fbac9389a210#diff-d7d397447dff9b82440110ee94dca3dda67b3f9449af7004a72a5f6ea99646beR1153 It pushes the resources directories from the `build` directory to the end of the test classpath, which results in...
Thank you for the PR, but the Run Configuration docs were massively reworked, and your PR became obsolete (see https://github.com/JetBrains/intellij-sdk-docs/pull/1065). All the changes are covered.
`1.11.1-SNAPSHOT` works correctly for me. Environment: macOS (Intel) Gradle 7.6
Hi, please try with `getData(VcsDataKeys.COMMIT_MESSAGE_DOCUMENT)` and `com.intellij.openapi.vcs.ui.CommitMessage#getEditor(Document)`. If it doesn't solve the issue, please ask on the forum so that other developers can find this knowledge more easily.