mercurial/crecord.py
branchstable
changeset 25447 093d38165e5a
parent 24840 a5e3634ba024
child 25449 c39640d26a4c
child 25460 bd4bcfa48c9e
equal deleted inserted replaced
25426:5f3666da6910 25447:093d38165e5a
  1330     up/down-arrow [k/j] : go to previous/next unfolded item
  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  right/left-arrow [l/h] : go to child item / parent item
  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                       f : fold / unfold item, hiding/revealing its children
  1334                       f : fold / unfold item, hiding/revealing its children
  1335                       f : fold / unfold parent item and all of its ancestors
  1335                       F : fold / unfold parent item and all of its ancestors
  1336                       m : edit / resume editing the commit message
  1336                       m : edit / resume editing the commit message
  1337                       e : edit the currently selected hunk
  1337                       e : edit the currently selected hunk
  1338                       a : toggle amend mode (hg rev >= 2.2)
  1338                       a : toggle amend mode (hg rev >= 2.2)
  1339                       c : confirm selected changes
  1339                       c : confirm selected changes
  1340                       r : review/edit and confirm selected changes
  1340                       r : review/edit and confirm selected changes
  1545             self.toggleall()
  1545             self.toggleall()
  1546         elif keypressed in ['e']:
  1546         elif keypressed in ['e']:
  1547             self.toggleedit(test=test)
  1547             self.toggleedit(test=test)
  1548         elif keypressed in ["f"]:
  1548         elif keypressed in ["f"]:
  1549             self.togglefolded()
  1549             self.togglefolded()
  1550         elif keypressed in ["f"]:
  1550         elif keypressed in ["F"]:
  1551             self.togglefolded(foldparent=True)
  1551             self.togglefolded(foldparent=True)
  1552         elif keypressed in ["?"]:
  1552         elif keypressed in ["?"]:
  1553             self.helpwindow()
  1553             self.helpwindow()
  1554 
  1554 
  1555     def main(self, stdscr):
  1555     def main(self, stdscr):