yash icon indicating copy to clipboard operation
yash copied to clipboard

Yet another shell

Results 55 yash issues
Sort by recently updated
recently updated
newest added

**Describe the bug** kitty is a terminal emulator supporting window split and layouts (horizontal and vertical splits). When the size of a single pane is changed, a new line with...

bug

The `$PROMPT_COMMAND` variable can be used to execute arbitrary commands just before beginning command line input, but the ability to execute commands immediately after completion of input has not existed...

enhancement

(Feature request migrated from https://osdn.net/projects/yash/ticket/46546) It might be helpful if the shell honors the `$XDG_CONFIG_HOME` variable when looking for initialization scripts (profile and rcfile). ---- Unresolved questions - [ ]...

enhancement

The following shell script should print 1 according to POSIX: for x in y; do ! continue done echo $? But it prints 0 on yash.

bug

(Feature request migrated from https://osdn.net/projects/yash/ticket/40964) **Is your feature request related to a problem? Please describe.** Currently, all yash processes share a single command history if they share the same `$HISTFILE`...

enhancement

(Feature request migrated from https://osdn.net/projects/yash/ticket/38262) Assume a user hits the Tab key to list command line completion candidates then starts typing one of the candidates. It would be useful if...

enhancement

(Issue migrated from https://osdn.net/projects/yash/ticket/40711) We now support expansion like this: ``` $ set -o braceexpand $ d=. o=1 $ echo {1${d}${d}3} {${o}..3} 1 2 3 1 2 3 ``` This...

enhancement

(Issue migrated from https://osdn.net/projects/yash/ticket/40752) XCU 2.13.1 Patterns Matching a Single Character: > If a pattern ends with an unescaped backslash, it is unspecified whether the pattern does not match anything...

bug

(Issue migrated from https://osdn.net/projects/yash/ticket/39289) I'm not sure if the paraneter name `0_1` is acceptable or not in the first place, but the current behavior is inconsistent anyway. ``` $ typeset...

bug

(This issue was originally filed at https://osdn.net/projects/yash/ticket/39386 by @McDutchie) ``` $ readonly a\ b=c $ readonly a\ b=d readonly: $a b is read-only $ echo ${a b} syntax error: invalid...

bug