Move from omf to fisher for fishshell
This commit is contained in:
14
config/fish/functions/__z_complete.fish
Normal file
14
config/fish/functions/__z_complete.fish
Normal file
@ -0,0 +1,14 @@
|
||||
function __z_complete -d "add completions"
|
||||
set -l __z_marks (string replace -r '\|.*' '' < $Z_DATA | string escape)
|
||||
|
||||
complete -c $Z_CMD -a "$__z_marks" -f
|
||||
complete -c $ZO_CMD -a "$__z_marks" -f
|
||||
|
||||
complete -c $Z_CMD -s c -l clean -d "Cleans out $Z_DATA"
|
||||
complete -c $Z_CMD -s e -l echo -d "Prints best match, no cd"
|
||||
complete -c $Z_CMD -s l -l list -d "List matches, no cd"
|
||||
complete -c $Z_CMD -s p -l purge -d "Purges $Z_DATA"
|
||||
complete -c $Z_CMD -s r -l rank -d "Searches by rank, cd"
|
||||
complete -c $Z_CMD -s t -l recent -d "Searches by recency, cd"
|
||||
complete -c $Z_CMD -s h -l help -d "Print help"
|
||||
end
|
||||
Reference in New Issue
Block a user