WATANABE Yuki
WATANABE Yuki
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...
(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 - [ ]...
(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`...
(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...
(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...
(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...
(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...
(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...
(Issue migrated from https://osdn.net/projects/yash/ticket/40707) Currently, the result of `~` and `${unset-~}` are not subject to field splitting or pathname expansion, but that of `${${unset-~}}` is. Can we prevent expansion for...
(Issue migrated from https://osdn.net/projects/yash/ticket/40890) POSIX says `sh` should ignore TSTP, TTIN and TTOU only when it is interactive. Currently yash ignores them when job-controlling, no matter whether interactive or not.