You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dotbare/dotbare.plugin.zsh

200 lines
6.1 KiB
Bash

0="${${ZERO:-${0:#$ZSH_ARGZERO}}:-${(%):-%N}}"
local _path="${0:h}"
if [[ -z "${path[(r)$_path]}" ]]; then
path+=( "$_path" )
fi
function _dotbare_completion_cmd {
local context state state_descr line
local -A opt_args
ret=1
_arguments -C \
'(- : *)'{-h,--help}'[show help information]' \
'(- : *)'{-v,--version}'[display dotbare version]' \
'1:cmds:->cmds' \
'*::options:->options' \
&& ret=0
case "${state}" in
cmds)
local subcommands
subcommands=(
'fadd:Stage files'
'fbackup:Backup files'
'fcheckout:Checkout file/branch/commit'
'fedit:Edit files'
'finit:Init/migrate dotbare'
'flog:Interactive log viewer'
'freset:Reset files/commit'
'fstash:Stage management'
'fstat:Toggle stage/unstage of files'
'funtrack:Untrack files'
'fupgrade:Update dotbare'
)
_describe -t commands 'command' subcommands \
&& ret=0
;;
options)
case "${line[1]}" in
fadd)
__dotbare_complete_fadd
;;
fbackup)
__dotbare_complete_fbackup
;;
fcheckout)
__dotbare_complete_fcheckout
;;
fedit)
__dotbare_complete_fedit
;;
finit)
__dotbare_complete_finit
;;
flog)
__dotbare_complete_flog
;;
freset)
__dotbare_complete_freset
;;
fstash)
__dotbare_complete_fstash
;;
fstat)
__dotbare_complete_fstat
;;
funtrack)
__dotbare_complete_funtrack
;;
fupgrade)
__dotbare_complete_fsimple
;;
esac
esac
return "${ret}";
}
function __dotbare_complete_fadd() {
local context state state_descr line
typeset -A opt_args
ret=1
_arguments \
'(- : *)'{-h,--help}'[show help information]' \
'(-f --file -d --dir)'{-f,--file}'[select files from PWD and stage]' \
'(-d --dir -f --file)'{-d,--dir}'[select directory from PWD and stage]' \
&& ret=0
}
function __dotbare_complete_fbackup() {
local context state state_descr line
typeset -A opt_args
ret=1
_arguments \
'(- : *)'{-h,--help}'[show help information]' \
'(-s --select -p --path)'{-s,--select}'[select tracked files to backup]' \
'(-p --path -s --select)'{-p,--path}'[sepcify path of files to backup]:filename:_files' \
'(-m --move)'{-m,--move}'[use mv cmd instead of cp cmd]' \
&& ret=0
}
function __dotbare_complete_fcheckout() {
local context state state_descr line
typeset -A opt_args
ret=1
_arguments \
'(- : *)'{-h,--help}'[show help information]' \
'(-s --select -b --branch -c --commit)'{-s,--select}'[select files and then checkout them in selected commits]' \
'(-b --branch -s --select -c --commit)'{-b,--branch}'[checkout branch]' \
'(-c --commit -b --branch -s --select)'{-c,--commit}'[checkout commit]' \
'(-y --yes)'{-y,--yes}'[acknowledge all actions and skip confirmation]' \
&& ret=0
}
function __dotbare_complete_fedit() {
local context state state_descr line
typeset -A opt_args
ret=1
_arguments \
'(- : *)'{-h,--help}'[show help information]' \
'(-m --modified -c --commit)'{-m,--modified}'[edit modified files]' \
'(-c --commit -m --modified)'{-c,--commit}'[edit commits]' \
&& ret=0
}
function __dotbare_complete_finit() {
local context state state_descr line
typeset -A opt_args
ret=1
_arguments \
'(- : *)'{-h,--help}'[show help information]' \
'(-u --url)'{-u,--url}'[migrate remote dotfiles to current system]: :->url' \
'(-s --submodule)'{-s,--submodule}'[clone submodules during migration]' \
'(-y --yes)'{-y,--yes}'[acknowledge all actions and skip confirmation]' \
&& ret=0
}
function __dotbare_complete_flog() {
local context state state_descr line
typeset -A opt_args
ret=1
_arguments \
'(- : *)'{-h,--help}'[show help information]' \
'(-r --revert -R --reset -e --edit -c --checkout)'{-r,--revert}'[revert the selected commit and skip action menu]' \
'(-r --revert -R --reset -e --edit -c --checkout)'{-R,--reset}'[reset the selected commit and skip action menu]' \
'(-r --revert -R --reset -e --edit -c --checkout)'{-e,--edit}'[edit the selected commit and skip action menu]' \
'(-r --revert -R --reset -e --edit -c --checkout)'{-c,--checkout}'[checkout the selected commit and skip action menu]' \
'(-y --yes)'{-y,--yes}'[acknowledge all actions and skip confirmation]' \
&& ret=0
}
function __dotbare_complete_freset() {
local context state state_descr line
typeset -A opt_args
ret=1
_arguments \
'(- : *)'{-h,--help}'[show help information]' \
'(-c --commit)'{-c,--commit}'[reset HEAD to certain commit]' \
'(-S --soft -H --hard)'{-S,--soft}'[reset commit using --soft flag]' \
'(-H --hard -S --soft)'{-H,--hard}'[reset commit using --hard flag]' \
'(-y --yes)'{-y,--yes}'[acknowledge all actions and skip confirmation]' \
&& ret=0
}
function __dotbare_complete_fstash() {
local context state state_descr line
typeset -A opt_args
ret=1
_arguments \
'(- : *)'{-h,--help}'[show help information]' \
'(-s --select -d --delete -p --pop)'{-s,--select}'[list modified files and stash the selected files]' \
'(-s --select -d --delete -p --pop)'{-d,--delete}'[list stash and delete the selected stash]' \
'(-s --select -d --delete -p --pop)'{-p,--pop}'[use "stash pop" instead of "stash apply"]' \
&& ret=0
}
function __dotbare_complete_fsimple() {
local context state state_descr line
typeset -A opt_args
ret=1
_arguments \
'(- : *)'{-h,--help}'[show help information]' \
&& ret=0
}
function __dotbare_complete_funtrack() {
local context state state_descr line
typeset -A opt_args
ret=1
_arguments \
'(- : *)'{-h,--help}'[show help information]' \
'(-t --temp -r --resume)'{-t,--temp}'[temporarily ignore changes of the selected files]' \
'(-t --temp -r --resume)'{-r,--resume}'[resume tracking changes of the selected files]' \
'(-y --yes)'{-y,--yes}'[acknowledge all actions and skip confirmation]' \
&& ret=0
}
compdef _dotbare_completion_cmd dotbare