File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -1492,9 +1492,16 @@ __git_diff_algorithms="myers minimal patience histogram"
1492
1492
1493
1493
__git_diff_submodule_formats=" diff log short"
1494
1494
1495
+ __git_color_moved_opts=" no default plain blocks zebra dimmed-zebra"
1496
+
1497
+ __git_color_moved_ws_opts=" no ignore-space-at-eol ignore-space-change
1498
+ ignore-all-space allow-indentation-change"
1499
+
1495
1500
__git_diff_common_options=" --stat --numstat --shortstat --summary
1496
1501
--patch-with-stat --name-only --name-status --color
1497
1502
--no-color --color-words --no-renames --check
1503
+ --color-moved --color-moved= --no-color-moved
1504
+ --color-moved-ws= --no-color-moved-ws
1498
1505
--full-index --binary --abbrev --diff-filter=
1499
1506
--find-copies-harder --ignore-cr-at-eol
1500
1507
--text --ignore-space-at-eol --ignore-space-change
@@ -1525,6 +1532,14 @@ _git_diff ()
1525
1532
__gitcomp " $__git_diff_submodule_formats " " " " ${cur## --submodule=} "
1526
1533
return
1527
1534
;;
1535
+ --color-moved=* )
1536
+ __gitcomp " $__git_color_moved_opts " " " " ${cur## --color-moved=} "
1537
+ return
1538
+ ;;
1539
+ --color-moved-ws=* )
1540
+ __gitcomp " $__git_color_moved_ws_opts " " " " ${cur## --color-moved-ws=} "
1541
+ return
1542
+ ;;
1528
1543
--* )
1529
1544
__gitcomp " --cached --staged --pickaxe-all --pickaxe-regex
1530
1545
--base --ours --theirs --no-index
You can’t perform that action at this time.
0 commit comments