-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[## v0.6.14 (2025-01-29), , - PR: <#265>, - Added command completions for subcommands and options, - Added dynamic completions for xvc_paths, storages, pipelines, pipeline steps, etc. , - Renamed xvc pipeline dag --format dot to graphviz, - Added experimental homebrew tap]
- Loading branch information
Showing
122 changed files
with
1,287 additions
and
1,093 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Adding completions to your shell | ||
|
||
Xvc supports dynamic completions for bash, zsh, elvish, fish and powershell. | ||
|
||
This means, when you hit `TAB` in your shell, it calls Xvc to complete the | ||
command. Even paths that are not visible in your filesystem or pipeline and | ||
step names are completed this way. | ||
|
||
In order to activate completions, run the following commands once in your shell: | ||
|
||
## Bash | ||
|
||
```bash | ||
echo "source <(COMPLETE=bash xvc)" >> ~/.bashrc | ||
``` | ||
|
||
## Elvish | ||
|
||
```sh | ||
echo "eval (E:COMPLETE=elvish xvc | slurp)" >> ~/.elvish/rc.elv | ||
``` | ||
|
||
## Fish | ||
|
||
```sh | ||
echo "source (COMPLETE=fish xvc | psub)" >> ~/.config/fish/config.fish | ||
``` | ||
|
||
## Powershell | ||
|
||
```sh | ||
$env:COMPLETE = "powershell" | ||
echo "xvc | Out-String | Invoke-Expression" >> $PROFILE | ||
Remove-Item Env:\COMPLETE | ||
``` | ||
|
||
## Zsh | ||
|
||
```sh | ||
echo "source <(COMPLETE=zsh xvc)" >> ~/.zshrc | ||
``` | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.