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 50 bashsupport-pro issues
Sort by recently updated
recently updated
newest added

Get error when run a script "Error running 'main.bash' Invalid run configuration: Calling invokeAndWait from read-action leads to possible deadlock" if using macros `$Prompt$` or `$FilePrompt$ `in Run configuration Debug...

Hi, Sometimes when I "play" with the `# bashsupport disable=BPXXXX,BPXXXX` at file level (I haven't tested at statement level) editor goes "crazy" (shows the tooltip on the middle of the...

I always get an error if I have a custom error handler in my code when debugging,: ``` IDE: PyCharm File: $HOME/.local/share/JetBrains/PyCharm2024.2/bashsupport-pro/bashdb/5.2/share/bashdb/lib/hook.sh Func: _Dbg_debug_trap_handler Line: 79 ``` ``` 69 _Dbg_debug_trap_handler()...

Within a project we have run configurations that we combine using the [Multirun plugin](https://plugins.jetbrains.com/plugin/7248-multirun/). We use it to ensure a specific order in that the configurations are run. This works...

Is it possible to provide a comment function to add leading spaces? ![image](https://github.com/user-attachments/assets/b7923186-a7ea-4bf9-845d-76bd317ae68e)

I had the need to just get the next free FD for a flock call, and the following is actually a thing you can do (cmp. https://stackoverflow.com/a/41620630): ```bash exec {flock_fd}>"${flock_file}"...

If possible, the code style should be enabled or disabled per file, e.g. with a file-level directive, to override the system default.

Hi, I see that some work has been made to have a partial support of the `source-path` directive in #141. However, I am unable to have it working as explained...

JetBrain IDEs support TODOs (three levels). It also supports to define custom TODO patterns and colouring them. ![ide_settings_todo](https://github.com/user-attachments/assets/b9746ea5-60d8-4f76-81ab-de8893aa4e45) Now, when your plugin is not installed, they all work as expected,...

## Code outside function ```bash aaa=q echo ``` When you type $a after `echo `, BSP will show `$aaa` ![image](https://github.com/user-attachments/assets/bd2ceba5-490d-43b8-9f9f-c4cd10c72bd8) GOOD --- If you do this first: ```bash aaa=q echo...