mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-03-15 23:22:53 +08:00
added completion for git add --patch
This commit is contained in:
parent
924b646b79
commit
568de8157a
@ -18,6 +18,10 @@ function __fish_git_remotes
|
||||
command git remote
|
||||
end
|
||||
|
||||
function __fish_git_modified_files
|
||||
command git status -s | grep -e "^ M" | sed "s/^ M //"
|
||||
end
|
||||
|
||||
function __fish_git_ranges
|
||||
set -l from (commandline -ot | perl -ne 'if (index($_, "..") > 0) { my @parts = split(/\.\./); print $parts[0]; }')
|
||||
if test -z "$from"
|
||||
@ -93,6 +97,7 @@ complete -f -c git -n '__fish_git_using_command show-branch' -a '(__fish_git_hea
|
||||
|
||||
### add
|
||||
complete -c git -n '__fish_git_needs_command' -a add -d 'Add file contents to the index'
|
||||
complete -f -c git -n '__fish_git_using_command add; and __fish_contains_opt -s p patch' -a (__fish_git_modified_files)
|
||||
# TODO options
|
||||
|
||||
### checkout
|
||||
|
Loading…
x
Reference in New Issue
Block a user