From 935c68e5cbf2f1adbc214a8de4b8f972469da630 Mon Sep 17 00:00:00 2001 From: Swastik Patel Date: Mon, 8 Sep 2025 20:43:19 +0530 Subject: [PATCH] docs: refactor 'pixi-extensions' docs to the latest changes --- docs/integration/extensions/introduction.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/integration/extensions/introduction.md b/docs/integration/extensions/introduction.md index 24102f2c41..e1f1410992 100644 --- a/docs/integration/extensions/introduction.md +++ b/docs/integration/extensions/introduction.md @@ -23,7 +23,7 @@ Pixi searches all directories in your `PATH` environment variable for executable ### 2. `pixi global` Directories Pixi also searches in directories managed by `pixi global`, which allows for organized extension management without cluttering your system PATH. -When you run `pixi --help`, all discovered extensions are automatically listed in the "Available Extensions" section, making them easily discoverable alongside built-in commands. +When you run `pixi --list`, all discovered extensions are automatically listed alongside all built-in commands, making the commands easily discoverable. ## Installing Extensions @@ -43,7 +43,7 @@ This approach has several advantages: - **Isolated environments**: Each extension gets its own environment, preventing dependency conflicts - **Automatic discovery**: Extensions are automatically found by Pixi without modifying PATH - **Easy management**: Use `pixi global list` and `pixi global remove` to manage extensions -- **Consistent experience**: Extensions appear in `pixi --help` just like built-in commands +- **Consistent experience**: Extensions appear in `pixi --list` with all the built-in commands, just like how `Cargo` handles it ### Manual Installation @@ -105,7 +105,7 @@ This works for both built-in commands and any extensions you have installed, mak ## Getting Help -- **List available extensions**: Run `pixi --help` to see all available extensions +- **List available extensions**: Run `pixi --list` to see all available extensions - **Community**: Join our [Discord](https://discord.gg/kKV8ZxyzY4) for discussions and support ## See Also