diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-03-20 22:31:41 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-03-20 22:32:14 +0800 |
| commit | ce77780ebcf548b0d823af7ae240364a56fa321a (patch) | |
| tree | 4f71b68f944b143c0e0af1010bf189719d6e834c /scripts/deploy/jv_cli.ps1 | |
| parent | ab6be7968b25afb57fc428695693484ad8576718 (diff) | |
Remove legacy jv and jvv binaries and related filesjvn_0.1.1
Diffstat (limited to 'scripts/deploy/jv_cli.ps1')
| -rw-r--r-- | scripts/deploy/jv_cli.ps1 | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/scripts/deploy/jv_cli.ps1 b/scripts/deploy/jv_cli.ps1 deleted file mode 100644 index 3de330a..0000000 --- a/scripts/deploy/jv_cli.ps1 +++ /dev/null @@ -1,63 +0,0 @@ -$SCRIPT_DIR = Split-Path -Parent $MyInvocation.MyCommand.Definition - -############## -### CONFIG ### -############## - -# Use JV_LANG to set CLI language -# Supported: en, zh-CN -# $env:JV_LANG = "en" - -# Use JV_AUTO_UPDATE to set auto content update (yes/no) -# After local operations that change Upstream Vault content -# Next `jv` command will auto-run `jv update` -$env:JV_AUTO_UPDATE = "yes" - -# Use JV_OUTDATED_MINUTES to set the expiration time (in minutes), requires JV_AUTO_UPDATE to be enabled -# Next time the `jv` command is used, if the content is outdated, `jv update` will be automatically executed -# When the set number is < 0, timeout-based update is disabled -# When the set number = 0, update runs every time (not recommended) -# When the set number > 0, update according to the specified time -# If not set, the default is -1 -# $env:JV_OUTDATED_MINUTES = "5" - -# Use JV_TEXT_EDITOR to set text editor for `jv track --work` `jv align --work` -# DEFAULT: $EDITOR environment variable, falling back to "jvii" if not set -# $env:JV_TEXT_EDITOR = "nano" - -############### -### ALIASES ### -############### - -function jv { - & (Get-Command jv -CommandType Application) @args -} - -function jvh { jv here @args } -function jvu { jv update @args } -function jvt { jv track @args } -function jmv { jv move @args } - -Set-Alias jvh jvh -Set-Alias jvu jvu -Set-Alias jvt jvt -Set-Alias jmv jmv - -################## -### COMPLETION ### -################## - -if (Test-Path "$SCRIPT_DIR\_legacy\comp\jv.ps1") { - . "$SCRIPT_DIR\comp\jv.ps1" -} -if (Test-Path "$SCRIPT_DIR\_legacy\comp\jvv.ps1") { - . "$SCRIPT_DIR\comp\jvv.ps1" -} - -################### -### ENVIRONMENT ### -################### - -if (Test-Path "$SCRIPT_DIR\bin") { - $env:PATH = "$SCRIPT_DIR\bin;" + $env:PATH -} |
