##// END OF EJS Templates
crecord: enable search hotkeys (issue6834)...
Jordi Gutiérrez Hermoso -
r52280:0e063a9b default
parent child Browse files
Show More
@@ -1665,6 +1665,9 b' smaller changesets. the following are va'
1665 1665 a : toggle all selections
1666 1666 c : confirm selected changes
1667 1667 r : review/edit and confirm selected changes
1668 / : regex search for code or filename
1669 n : next search result for code or filename
1670 N : previous search result for code or filename
1668 1671 q : quit without confirming (no changes will be made)
1669 1672 ? : help (what you're currently reading)"""
1670 1673 )
@@ -2013,6 +2016,12 b' are you sure you want to review/edit and'
2013 2016 self.togglefolded(foldparent=True)
2014 2017 elif keypressed in ["m"]:
2015 2018 self.commitMessageWindow()
2019 elif keypressed in ["/"]:
2020 self.handlesearch()
2021 elif keypressed in ["n"]:
2022 self.handlenextsearch()
2023 elif keypressed in ["N"]:
2024 self.handleprevsearch()
2016 2025 elif keypressed in ["g", "KEY_HOME"]:
2017 2026 self.handlefirstlineevent()
2018 2027 elif keypressed in ["G", "KEY_END"]:
General Comments 0
You need to be logged in to leave comments. Login now