mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 21:33:09 +00:00
Document $hostname variable
This commit is contained in:
parent
410f6fbd44
commit
db6fd2c570
2 changed files with 1 additions and 1 deletions
|
@ -45,6 +45,7 @@ This section is for changes merged to the `major` branch that are not also merge
|
||||||
- Wrapping completions (from `complete -w` or `function -w`) can now inject arguments. For example, `complete gco -w 'git checkout'` now works properly (#1976). The `alias` function has been updated to respect this behavior.
|
- Wrapping completions (from `complete -w` or `function -w`) can now inject arguments. For example, `complete gco -w 'git checkout'` now works properly (#1976). The `alias` function has been updated to respect this behavior.
|
||||||
- The `jobs` builtin now has a `-q` and `--quiet` option to silence the output.
|
- The `jobs` builtin now has a `-q` and `--quiet` option to silence the output.
|
||||||
- fish now supports `&&`, `||`, and `!` (#4620).
|
- fish now supports `&&`, `||`, and `!` (#4620).
|
||||||
|
- The machine hostname, where available, is now exposed as `$hostname` which is now a reserved variable. This drops the dependency on the `hostname` executable (#4422).
|
||||||
|
|
||||||
## Other significant changes
|
## Other significant changes
|
||||||
- Command substitution output is now limited to 10 MB by default (#3822).
|
- Command substitution output is now limited to 10 MB by default (#3822).
|
||||||
|
|
|
@ -76,7 +76,6 @@ Running fish requires:
|
||||||
* `awk`
|
* `awk`
|
||||||
* `find`
|
* `find`
|
||||||
* `grep`
|
* `grep`
|
||||||
* `hostname`
|
|
||||||
* `kill`
|
* `kill`
|
||||||
* `ps`
|
* `ps`
|
||||||
* `sed`
|
* `sed`
|
||||||
|
|
Loading…
Reference in a new issue