fortran-plugin
fortran-plugin copied to clipboard
Fortran language plugin for IntelliJ Idea
Bumps [org.jetbrains.kotlin.jvm](https://github.com/JetBrains/kotlin) from 2.0.10 to 2.0.20. Release notes Sourced from org.jetbrains.kotlin.jvm's releases. Kotlin 2.0.20 Changelog Analysis. API New Features KT-68143 Analysis API: support KtWhenConditionInRange call resolution Performance Improvements KT-67195 K2:...
Bumps [org.jetbrains.kotlinx.kover](https://github.com/Kotlin/kotlinx-kover) from 0.8.2 to 0.8.3. Release notes Sourced from org.jetbrains.kotlinx.kover's releases. 0.8.3 This release introduces the Maven plugin for Kover. Kover Maven Plugin [#51](https://github.com/Kotlin/kotlinx-kover/issues/51) Implemented Kover Maven Plugin Kover...
As indicated in https://fortran-lang.org/learn/quickstart/variables/, modules can be used inside `BLOCK`: ``` module your_module implicit none integer :: n = 2 end module program main implicit none real :: x block...
Example, outside any `module`: ```file.f08 interface !... end interface function FUNC() !... end function FUNC ``` This compiles fine, but the linter shows an error on `FUNC`.
Please could we have support for the Fortran `select rank` construction, i.e. https://www.intel.com/content/www/us/en/docs/fortran-compiler/developer-guide-reference/2024-2/select-rank.html ?
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4 to 5. Release notes Sourced from codecov/codecov-action's releases. v5.0.0 v5 Release v5 of the Codecov GitHub Action will use the Codecov Wrapper to encapsulate the CLI....
Bumps [org.jetbrains.kotlin.jvm](https://github.com/JetBrains/kotlin) from 2.0.10 to 2.0.21. Release notes Sourced from org.jetbrains.kotlin.jvm's releases. Kotlin 2.0.21 Changelog Apple Ecosystem KT-69093 Xcode 16 support in Kotlin Backend. Native. Debug KT-71374 lldb: step out...
Bumps org.jetbrains.intellij.platform from 2.0.0 to 2.1.0. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands...
I'm installing Fortran 90 environment in Windows, with JetBrains CLion and your plugin, with "mingw-w64". With default "Run/debug configurations" in CLion, building and running a "Hello world" example will raise...
something like ``` #ifdef my_flag call my_function #endif ``` if the -Dmy_flag is passed via cmake gets the call greyed out as if the macro is not defined. Works normally...