bashsupport-pro
                                
                                
                                
                                    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.
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? 
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.  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`  GOOD --- If you do this first: ```bash aaa=q echo...