bashsupport-pro icon indicating copy to clipboard operation
bashsupport-pro copied to clipboard

Public issue tracking for BashSupport Pro. This is a plugin, which provides advanced support for Bash scripts for JetBrains IDEs.

Results 67 bashsupport-pro issues
Sort by recently updated
recently updated
newest added

Hello, in my bash scripts I have an error: `Executables must start with #!/bin/bash` but I use environment compatible shebang: `#!/usr/bin/env bash` and I don't want to change it to...

Hi, Not sure if this is a 2025.3 issue, or Bash Support Pro, or a new config setting somewhere, but I've noticed that long lines are now autoformatted to have...

When sourcing a library from an explicitly written bash script, I'd like to hint/indicate inside Intellij to BashSupport Pro that my library file is actually written in bash style and...

I think it's self-explanatory: I would not expect a warning here in this case ;).

When a shell file contains a variable with the `h` modifier, bashsupport-pro has a few issues matching the usage described in the `ZSHEXPN` man page under the `HISTORY EXPANSION` section,...

``` #!/bin/bash main() { ROOT="$(dirname -- "$(readlink -f -- "${BASH_SOURCE[0]}")")/.." export ROOT } ``` while you can technically do that, I don't think it's useful to declare exported variables as...

Idea has some validation for snippets found in Markdown documents. E.g. it will flag wrongly formatted YAML or JSON. It would be cool if shellcheck would be run on `shell`...

Given a structure like this: If you choose to run "All tests" on `test` the setup_suite files will not be called. Running "All tests" on `e2e` gives the expected result....

``` foo() { results=$(mktemp) trap 'rm -f "$results"' EXIT } ```

Shellcheck resolves `source` directive relative to the working directory that it was executed, no relative to the file, e.g. ``` src/ - sourcing.sh - source.sh ``` If you run shellcheck...