File tree Expand file tree Collapse file tree 1 file changed +45
-0
lines changed Expand file tree Collapse file tree 1 file changed +45
-0
lines changed Original file line number Diff line number Diff line change @@ -1376,6 +1376,39 @@ _git_config ()
1376
1376
__gitcomp " $( __git_heads) " " $pfx " " $cur " " ."
1377
1377
return
1378
1378
;;
1379
+ guitool.* .* )
1380
+ local pfx=" ${cur% .* } ."
1381
+ cur=" ${cur##* .} "
1382
+ __gitcomp "
1383
+ argprompt cmd confirm needsfile noconsole norescan
1384
+ prompt revprompt revunmerged title
1385
+ " " $pfx " " $cur "
1386
+ return
1387
+ ;;
1388
+ difftool.* .* )
1389
+ local pfx=" ${cur% .* } ."
1390
+ cur=" ${cur##* .} "
1391
+ __gitcomp " cmd path" " $pfx " " $cur "
1392
+ return
1393
+ ;;
1394
+ man.* .* )
1395
+ local pfx=" ${cur% .* } ."
1396
+ cur=" ${cur##* .} "
1397
+ __gitcomp " cmd path" " $pfx " " $cur "
1398
+ return
1399
+ ;;
1400
+ mergetool.* .* )
1401
+ local pfx=" ${cur% .* } ."
1402
+ cur=" ${cur##* .} "
1403
+ __gitcomp " cmd path trustExitCode" " $pfx " " $cur "
1404
+ return
1405
+ ;;
1406
+ pager.* )
1407
+ local pfx=" ${cur% .* } ."
1408
+ cur=" ${cur#* .} "
1409
+ __gitcomp " $( __git_all_commands) " " $pfx " " $cur "
1410
+ return
1411
+ ;;
1379
1412
remote.* .* )
1380
1413
local pfx=" ${cur% .* } ."
1381
1414
cur=" ${cur##* .} "
@@ -1391,6 +1424,12 @@ _git_config ()
1391
1424
__gitcomp " $( __git_remotes) " " $pfx " " $cur " " ."
1392
1425
return
1393
1426
;;
1427
+ url.* .* )
1428
+ local pfx=" ${cur% .* } ."
1429
+ cur=" ${cur##* .} "
1430
+ __gitcomp " insteadof" " $pfx " " $cur "
1431
+ return
1432
+ ;;
1394
1433
esac
1395
1434
__gitcomp "
1396
1435
alias.
@@ -1465,6 +1504,7 @@ _git_config ()
1465
1504
diff.suppressBlankEmpty
1466
1505
diff.tool
1467
1506
diff.wordRegex
1507
+ difftool.
1468
1508
difftool.prompt
1469
1509
fetch.unpackLimit
1470
1510
format.attach
@@ -1495,6 +1535,7 @@ _git_config ()
1495
1535
gitcvs.enabled
1496
1536
gitcvs.logfile
1497
1537
gitcvs.usecrlfattr
1538
+ guitool.
1498
1539
gui.blamehistoryctx
1499
1540
gui.commitmsgwidth
1500
1541
gui.copyblamethreshold
@@ -1538,13 +1579,15 @@ _git_config ()
1538
1579
log.date
1539
1580
log.showroot
1540
1581
mailmap.file
1582
+ man.
1541
1583
man.viewer
1542
1584
merge.conflictstyle
1543
1585
merge.log
1544
1586
merge.renameLimit
1545
1587
merge.stat
1546
1588
merge.tool
1547
1589
merge.verbosity
1590
+ mergetool.
1548
1591
mergetool.keepBackup
1549
1592
mergetool.prompt
1550
1593
pack.compression
@@ -1556,6 +1599,7 @@ _git_config ()
1556
1599
pack.threads
1557
1600
pack.window
1558
1601
pack.windowMemory
1602
+ pager.
1559
1603
pull.octopus
1560
1604
pull.twohead
1561
1605
push.default
@@ -1593,6 +1637,7 @@ _git_config ()
1593
1637
status.showUntrackedFiles
1594
1638
tar.umask
1595
1639
transfer.unpackLimit
1640
+ url.
1596
1641
user.email
1597
1642
user.name
1598
1643
user.signingkey
You can’t perform that action at this time.
0 commit comments