mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 12:15:42 +02:00
REFACTOR: remove deprecated commands (old-alias
) (#9056)
# Description as stated in the `0.79` release note, this PR removes the `old-alias` and `export old-alias` commands, which were deprecated before. # User-Facing Changes `old-alias` is gone for good 😌 # Tests + Formatting - 🟢 `toolkit fmt` - 🟢 `toolkit clippy` - 🟢 `toolkit test` - 🟢 `toolkit test stdlib` # After Submitting already mentionned in the `0.79` release note.
This commit is contained in:
@ -285,16 +285,16 @@ def show-alias [alias: record] {
|
||||
# > let us define a bunch of aliases
|
||||
# > ```nushell
|
||||
# > # my foo alias
|
||||
# > old-alias foo = echo "this is foo"
|
||||
# > alias foo = echo "this is foo"
|
||||
# >
|
||||
# > # my bar alias
|
||||
# > old-alias bar = echo "this is bar"
|
||||
# > alias bar = echo "this is bar"
|
||||
# >
|
||||
# > # my baz alias
|
||||
# > old-alias baz = echo "this is baz"
|
||||
# > alias baz = echo "this is baz"
|
||||
# >
|
||||
# > # a multiline alias
|
||||
# > old-alias multi = echo "this
|
||||
# > alias multi = echo "this
|
||||
# > is
|
||||
# > a
|
||||
# > multiline
|
||||
|
Reference in New Issue
Block a user