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.
In my code, this is the code entry point:  However, if I moved this into main, then main would never get called. Further, it would cause an infinite recursion...
Support `Go to Declaration` for files that are `exec`'d in a similar way `.` and `source`'d files are supported.
IDEA 2024.3.5 / BashSupport Pro 4.6.3.243 ```zsh # I moved this into a new line because it made the example too wide to read on GitHub: #'s/^([^\ ]*) ?(\(?[A-z_\.\-]*\)?)(([_\-\ ]*)(PowerShell[^\...
An error occurs when stopping in the debugger on breakpoints. It is after updating to the latest 4.6.0.243. Error: ` Error in file: '../../../../../../../../../.local/share/JetBrains/PyCharm2024.3/bashsupport-pro/bashdb/5.2/share/bashdb/lib/hook.sh:1', func: _Dbg_hook_enter_debugger, line: 1, err: 1...
When using remote run target, [as described](https://www.bashsupport.com/ru/manual/remote-development/#run-targets) in documentation, viewing the stdout in console is rather impossible due to mixed ouptut from bashdb itself.  Running the same script locally...
Hi! Is it possible to get Local History to work for detected file types, as these otherwise have no file type. (local history only works with detected file types). Not...
If I have a function get_something() defined in the common.sh and I am debugging other script: #!/bin/bash source ./common.sh cd /path/to/somewhere/else something=$(get_something) # debugger won't step into common.sh get_something() function...