Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(#10): Add same Textmate Bundle as VSCode-Extension #11

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

marfranke
Copy link
Contributor

Resolves #10

This PR adds exactly the same TextMate Bundle used by the VSCode Plugin. To sync changes, a gradle copy task is used to import the required Configuration and Grammar files.
Unfortunately, the textmate.bundleProvider-Extension Point is only available from the recent 24.1-Version of the TextMate-Plugin that is bundled with IntelliJ, so I increased the minimum supported Version of the Bruno IntelliJ Plugin to the recent 24.1 Version.
image

// Set the JVM compatibility versions
withType<JavaCompile> {
sourceCompatibility = "11"
targetCompatibility = "11"
}

patchPluginXml {
sinceBuild.set("221")

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not compatible with this version anymore ?

Comment on lines 41 to 42
sourceCompatibility = "11"
targetCompatibility = "11"
Copy link

@martinsefcik martinsefcik Jul 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably it would be fine to upgrade it to v17 as there is the following warning:
The Java configuration specifies sourceCompatibility=11 but IntelliJ Platform 2024.1 requires sourceCompatibility=17.
during building plugin.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

IntelliJ-Plugin: Import VSCode TextMate Bundle
2 participants