eclipse-bash-editor icon indicating copy to clipboard operation
eclipse-bash-editor copied to clipboard

Bash editor plugin for eclipse

Results 24 eclipse-bash-editor issues
Sort by recently updated
recently updated
newest added

## Situation - Environment: - Linux mint - Eclipse 2022-03 - Bash Editor V2.8.0 - Example code ```shell #!/bin/bash echo "hello" # make a break point at this line and...

bug
debugger

## Situation ```bash #!/bin/bash function startMe() { local data echo "hello world" >> $data echo "xx:$data" } startMe ``` `data` cannot be marked - local variables in functions are currently...

enhancement
mark occurrences

```bash for cipher in ${ciphers[@]} ``` The variable should not appear inside outline because it's only local inside the loop, but for mark occurrences it is important.

enhancement
mark occurrences

It would be great to have linting and warnings in the Editor. There is such a software called [shellcheck](https://github.com/koalaman/shellcheck), for which there is also [support in VS Code](https://marketplace.visualstudio.com/items?itemName=timonwong.shellcheck).

`An error occurred while collecting items to be installed session context was:(profile=SDKProfile, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=). Problems downloading artifact: osgi.bundle,de.jcup.basheditor,2.9.0. Error reading signed content:C:\Users\philb\AppData\Local\Temp\signatureFile7287624370526782437.jar An error occurred while processing the signatures...

I get millions of error message in the Eclipse Error View because bash-editor doesn't work with symlinks: ``` java.io.FileNotFoundException: C:\dev\project\ui\webapp\node_modules\react (The file cannot be accessed by the system) at java.base/java.io.FileInputStream.open0(Native...

In other launch configurations (Java etc.), it's possible to add variables, like current_date or file_prompt (I can't enter the required dollar sign and curly brackets in this editor). This seems...

#!/usr/bin/env bash string_to_asciihex() { local string="$1" local -i i eos local output="" eos=${#string}-1 for (( i=0; i

bug
parser
highlighting

## Situation ```bash function eventNotExists(){ if [[ "$FUNCTION_RESULT_TRUE" = ""]]; then exit 100 fi } ``` Outcome: ![image](https://user-images.githubusercontent.com/11644753/183377514-d0fdf050-2e3e-473f-952c-f48502d01b67.png) First error: ``` Multiple markers at this line - This curly brace...

bug

Hi, there seems to be an inconsistency in the way local variables are handled in the outline window, here is an example: ``` #!/bin/bash f_a() { local v_a v_a="_" echo...

bug