зеркало из https://github.com/microsoft/git.git
Merge branch 'kk/complete-diff-color-moved'
Completion update. * kk/complete-diff-color-moved: completion: add diff --color-moved[-ws]
This commit is contained in:
Коммит
a4fd114ffc
|
@ -1492,9 +1492,16 @@ __git_diff_algorithms="myers minimal patience histogram"
|
||||||
|
|
||||||
__git_diff_submodule_formats="diff log short"
|
__git_diff_submodule_formats="diff log short"
|
||||||
|
|
||||||
|
__git_color_moved_opts="no default plain blocks zebra dimmed-zebra"
|
||||||
|
|
||||||
|
__git_color_moved_ws_opts="no ignore-space-at-eol ignore-space-change
|
||||||
|
ignore-all-space allow-indentation-change"
|
||||||
|
|
||||||
__git_diff_common_options="--stat --numstat --shortstat --summary
|
__git_diff_common_options="--stat --numstat --shortstat --summary
|
||||||
--patch-with-stat --name-only --name-status --color
|
--patch-with-stat --name-only --name-status --color
|
||||||
--no-color --color-words --no-renames --check
|
--no-color --color-words --no-renames --check
|
||||||
|
--color-moved --color-moved= --no-color-moved
|
||||||
|
--color-moved-ws= --no-color-moved-ws
|
||||||
--full-index --binary --abbrev --diff-filter=
|
--full-index --binary --abbrev --diff-filter=
|
||||||
--find-copies-harder --ignore-cr-at-eol
|
--find-copies-harder --ignore-cr-at-eol
|
||||||
--text --ignore-space-at-eol --ignore-space-change
|
--text --ignore-space-at-eol --ignore-space-change
|
||||||
|
@ -1525,6 +1532,14 @@ _git_diff ()
|
||||||
__gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
|
__gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}"
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
|
--color-moved=*)
|
||||||
|
__gitcomp "$__git_color_moved_opts" "" "${cur##--color-moved=}"
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
--color-moved-ws=*)
|
||||||
|
__gitcomp "$__git_color_moved_ws_opts" "" "${cur##--color-moved-ws=}"
|
||||||
|
return
|
||||||
|
;;
|
||||||
--*)
|
--*)
|
||||||
__gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
|
__gitcomp "--cached --staged --pickaxe-all --pickaxe-regex
|
||||||
--base --ours --theirs --no-index
|
--base --ours --theirs --no-index
|
||||||
|
|
Загрузка…
Ссылка в новой задаче