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