diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-03-25 21:52:52 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-03-25 21:52:52 +0800 |
| commit | 4cb7c2e91d7dbde32de31e6ab48683d60212ec1d (patch) | |
| tree | 8d70aac6dd33599b278684c05388a319a978b825 /.cargo/config.toml | |
| parent | fece037f453006c83c45825e3649495180eb30c9 (diff) | |
Add shell flag to completion scripts and rename output filesdevdeploy/nightly
- Add -F flag to all completion scripts to specify shell type
- Rename completion output files to generic names (comp.sh, comp.zsh,
etc.)
- Add help text for jvn_comp program
- Combine specific and default completion results
- Add completion handlers for sheetdump, sheetedit, and version commands
- Remove word count limits from workspace_alias and workspace_sheet
completions
Diffstat (limited to '.cargo/config.toml')
| -rw-r--r-- | .cargo/config.toml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml index 48edb98..213cffe 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -25,17 +25,17 @@ binaries = [ # Completions [copies.completion_jvn_bash] from = "scripts/deploy/completions/bash.sh" -to = "comp/jvn_bash.sh" +to = "comp/comp.sh" platform = [ "linux", "macos" ] [copies.completion_jvn_zsh] from = "scripts/deploy/completions/zsh.zsh" -to = "comp/jvn_zsh.zsh" +to = "comp/comp.zsh" platform = [ "linux", "macos" ] [copies.completion_jvn_fish] from = "scripts/deploy/completions/fish.fish" -to = "comp/jvn_fish.fish" +to = "comp/comp.fish" platform = [ "linux", "macos" ] # Entries @@ -61,7 +61,7 @@ platform = [ "linux", "macos" ] # Completions [copies.completion_jvn_powershell] from = "scripts/deploy/completions/powershell.ps1" -to = "comp/jvn_pwsl.ps1" +to = "comp/comp.ps1" platform = [ "windows" ] # Entries |
