##// END OF EJS Templates
crecord: fix a typo introduced when moving crecord to core...
Laurent Charignon -
r25447:093d3816 stable
parent child Browse files
Show More
@@ -1332,7 +1332,7 b' the following are valid keystrokes:'
1332 1332 right/left-arrow [l/h] : go to child item / parent item
1333 1333 shift-left-arrow [h] : go to parent header / fold selected header
1334 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 1336 m : edit / resume editing the commit message
1337 1337 e : edit the currently selected hunk
1338 1338 a : toggle amend mode (hg rev >= 2.2)
@@ -1547,7 +1547,7 b' are you sure you want to review/edit and'
1547 1547 self.toggleedit(test=test)
1548 1548 elif keypressed in ["f"]:
1549 1549 self.togglefolded()
1550 elif keypressed in ["f"]:
1550 elif keypressed in ["F"]:
1551 1551 self.togglefolded(foldparent=True)
1552 1552 elif keypressed in ["?"]:
1553 1553 self.helpwindow()
General Comments 0
You need to be logged in to leave comments. Login now