1
0
mirror of https://github.com/nushell/nushell.git synced 2025-05-29 06:17:54 +02:00
Douglas a60f454154
No longer autoload deprecated-dirs ()
# Description

Follow-up to . In that commit, using one of the `dirs`/`shells`
aliases would notify the user that it would no longer be autoloaded in
future releases. This is the removal stage.

Side-benefit: Additional 1ms+ load time improvement

# User-Facing Changes

Breaking-change - `dirs` aliases are no longer autoloaded.

Users can either choose to continue using the aliases by adding the
following to the startup:

```nu
use std/dirs shells-aliases *
```

Alternatively, users can use the `dirs` subcommands (rather than the
aliases) with:

```nu
use std/dirs
```
2024-11-05 21:53:41 +01:00
..
2024-10-09 08:03:33 -05:00