mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 11:22:52 +08:00
CHANGELOG
This commit is contained in:
parent
2419809a26
commit
b741decb07
|
@ -24,6 +24,7 @@ Notable improvements and fixes
|
||||||
checks/set.fish (line 471): for: a,b: invalid variable name. See `help identifiers`
|
checks/set.fish (line 471): for: a,b: invalid variable name. See `help identifiers`
|
||||||
for a,b in y 1 z 3
|
for a,b in y 1 z 3
|
||||||
^~^
|
^~^
|
||||||
|
- A new helper function ``fish_delta`` can be used to show the difference to fish's stock configuration (:issue:`9255`).
|
||||||
|
|
||||||
Deprecations and removed features
|
Deprecations and removed features
|
||||||
---------------------------------
|
---------------------------------
|
||||||
|
@ -59,6 +60,11 @@ Scripting improvements
|
||||||
- ``string`` is now faster when reading large strings from stdin (:issue:`9139`).
|
- ``string`` is now faster when reading large strings from stdin (:issue:`9139`).
|
||||||
- ``string repeat`` no longer allocates the entire output at once, instead using chunks. This needs less memory and has less of a delay with long strings. Also it was possible to make fish crash by making it allocate more memory than the system had. (:issue:`9124`)
|
- ``string repeat`` no longer allocates the entire output at once, instead using chunks. This needs less memory and has less of a delay with long strings. Also it was possible to make fish crash by making it allocate more memory than the system had. (:issue:`9124`)
|
||||||
- Builtins writing to a pipe or file was optimized. In particular printf no longer issues a separate ``write()`` syscall for every escaped character. (:issue:`9229`).
|
- Builtins writing to a pipe or file was optimized. In particular printf no longer issues a separate ``write()`` syscall for every escaped character. (:issue:`9229`).
|
||||||
|
- ``fish_clipboard_copy`` and ``fish_clipboard_paste`` can now be used in pipes (:issue:`9271`)::
|
||||||
|
|
||||||
|
git rev-list 3.5.1 | fish_clipboard_copy
|
||||||
|
|
||||||
|
fish_clipboard_paste | string join + | math
|
||||||
|
|
||||||
Interactive improvements
|
Interactive improvements
|
||||||
------------------------
|
------------------------
|
||||||
|
|
Loading…
Reference in New Issue
Block a user