##// END OF EJS Templates
merge with stable
Matt Mackall -
r25461:6fabde6e merge default
parent child Browse files
Show More
@@ -1331,9 +1331,9 b' the following are valid keystrokes:'
1331 1331 [space] : (un-)select item ([~]/[x] = partly/fully applied)
1332 1332 a : (un-)select all items
1333 1333 up/down-arrow [k/j] : go to previous/next unfolded item
1334 pgup/pgdn [k/j] : go to previous/next item of same type
1334 pgup/pgdn [K/J] : go to previous/next item of same type
1335 1335 right/left-arrow [l/h] : go to child item / parent item
1336 shift-left-arrow [h] : go to parent header / fold selected header
1336 shift-left-arrow [H] : go to parent header / fold selected header
1337 1337 f : fold / unfold item, hiding/revealing its children
1338 1338 F : fold / unfold parent item and all of its ancestors
1339 1339 m : edit / resume editing the commit message
@@ -1520,17 +1520,17 b' are you sure you want to review/edit and'
1520 1520 def handlekeypressed(self, keypressed, test=False):
1521 1521 if keypressed in ["k", "KEY_UP"]:
1522 1522 self.uparrowevent()
1523 if keypressed in ["k", "KEY_PPAGE"]:
1523 if keypressed in ["K", "KEY_PPAGE"]:
1524 1524 self.uparrowshiftevent()
1525 1525 elif keypressed in ["j", "KEY_DOWN"]:
1526 1526 self.downarrowevent()
1527 elif keypressed in ["j", "KEY_NPAGE"]:
1527 elif keypressed in ["J", "KEY_NPAGE"]:
1528 1528 self.downarrowshiftevent()
1529 1529 elif keypressed in ["l", "KEY_RIGHT"]:
1530 1530 self.rightarrowevent()
1531 1531 elif keypressed in ["h", "KEY_LEFT"]:
1532 1532 self.leftarrowevent()
1533 elif keypressed in ["h", "KEY_SLEFT"]:
1533 elif keypressed in ["H", "KEY_SLEFT"]:
1534 1534 self.leftarrowshiftevent()
1535 1535 elif keypressed in ["q"]:
1536 1536 raise util.Abort(_('user quit'))
General Comments 0
You need to be logged in to leave comments. Login now