-
-
Save rishiip/3a7e8e8153984e7b8a236af493a276f8 to your computer and use it in GitHub Desktop.
Custom key bindings for Reviewable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
["n", "Next unreviewed file", "nextUnreviewedFile()"], | |
["p", "Previous unreviewed file", "prevUnreviewedFile()"], | |
["shift+n", "Next file", "nextFile()"], | |
["shift+p", "Previous file", "prevFile()"], | |
["x", "Mark file as reviewed / unreviewed", "toggleCurrentFileReviewed(); nextUnreviewedFile()"], | |
["j", "Next unreplied comment", "nextUnrepliedDiscussion()"], | |
["k", "Previous unreplied comment", "prevUnrepliedDiscussion()"], | |
["shift+j", "Next comment", "nextDiscussion()"], | |
["shift+k", "Previous comment", "prevDiscussion()"], | |
["mod+shift+j", "Next draft", "nextDraft()"], | |
["mod+shift+k", "Previous draft", "prevDraft()"], | |
["r", "Reply to comment", "replyToCurrentDiscussion()"], | |
["d", "Reply to comment with 'Done'", "replyToCurrentDiscussion('Done')"], | |
["y", "Acknowledge comment", "acknowledgeCurrentDiscussion()"], | |
["mod+shift+p", "Toggle draft preview", "toggleCurrentDraftPreview()"], | |
["?", "Show / hide this help menu", "toggleCheatSheet()"] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment