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:
Antoine Stevan
2023-05-04 00:08:07 +02:00
committed by GitHub
parent 6bbe5b6255
commit b82e279f9d
6 changed files with 5 additions and 137 deletions

View File

@ -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