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.
**${PARAMETER^}** is a legitimate, documented Bash shell expansion that up-cases the first letter of the value of PARAMETER. This shows as an error under version **3.3.0.232** of **BashSupport Pro** under...
BashSupport Pro complains about a lot of code but I have to fix it by hand. It would be nice if it had more quick fixes. The three that would...
Hi author. After several months of heavy use of this plugin, here are some suggestions for improvement (some of which have been mentioned): --- ## if As mentioned below: https://github.com/BashSupport-Pro/bashsupport-pro/issues/117#issue-1453053912...
- `if [ ... ] ...` - `if [[ ... ]] ...` - `if command; ...` Suggested at https://github.com/BashSupport-Pro/bashsupport-pro/issues/116
The following code reports an error in the syntax when it probably shouldn't: ``` var1="I Am A String" var2=1402 var3="I Am Also A string" DoAThing "MyArg"
https://youtrack.jetbrains.com/issue/IJPL-11445/Run-configuration-macros-like-FilePath-do-not-work#focus=Comments-27-9772604.0-0 Macros like `$FileDirName$` should work for our run configurations. Currently, path-based macros are not working as expected.
it would be nice to have the same auto-complete support for user defined aliases like we have for user defined functions. currently in intellij, when writing something like the snippet...
Hi, Does BashSupport Pro support variable autocomplete? I post you two examples (one for BashSupport Pro and one for bundled Shell Script). Thanks.
Hi, We're using the variable expansion recommendation from Google (https://google.github.io/styleguide/shellguide.html#variable-expansion, e.g. prefer `"${var}"` over `"$var"`) and BashSupport Pro does not automatically closes braces, neither manual (after you write the variable...
