Last active
September 18, 2019 12:42
-
-
Save ermshiperete/7b5c51c7dc1b33f61a16 to your computer and use it in GitHub Desktop.
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
[ | |
["f", "Show next/latest diffs", "setProposedRevRanges()"], | |
["n", "Next unreviewed file", "nextUnreviewedFile()"], | |
["p", "Previous unreviewed file", "prevUnreviewedFile()"], | |
["shift+n", "Next changed file", "nextChangedFile()"], | |
["shift+p", "Previous changed file", "prevChangedFile()"], | |
[null, "Next visible file", "nextVisibleFile()"], | |
[null, "Previous visible file", "prevVisibleFile()"], | |
[null, "Next file", "nextFile()"], | |
[null, "Previous file", "prevFile()"], | |
["x", "Mark file as reviewed / unreviewed", "toggleCurrentFileReviewed()"], | |
["shift+x", "Mark all files as reviewed", "setGlobalReviewed()"], | |
["j", "Next unreplied comment", "nextUnrepliedDiscussion()"], | |
["k", "Previous unreplied comment", "prevUnrepliedDiscussion()"], | |
[null, "Next comment", "nextDiscussion()"], | |
[null, "Previous comment", "prevDiscussion()"], | |
["shift+j", "Next unresolved comment", "nextUnresolvedDiscussionWithoutDraft()"], | |
["shift+k", "Previous unresolved comment", "prevUnresolvedDiscussionWithoutDraft()"], | |
[null, "Next draft", "nextDraft()"], | |
[null, "Previous draft", "prevDraft()"], | |
[".", "Next item that needs attention", "nextChangedFileOrUnrepliedDiscussion()"], | |
[",", "Previous item that needs attention", "prevChangedFileOrUnrepliedDiscussion()"], | |
[["r", "enter"], "Reply to comment", "replyToCurrentDiscussion()"], | |
["d", "Reply to comment with 'Done'", "replyToCurrentDiscussion('Done.')"], | |
["y", "Acknowledge comment", "acknowledgeCurrentDiscussion()"], | |
[null, "Set disposition to \"discussing\"", "setCurrentDiscussionDisposition('discussing')"], | |
[null, "Set disposition to \"satisfied\"", "setCurrentDiscussionDisposition('satisfied')"], | |
[null, "Set disposition to \"blocking\"", "setCurrentDiscussionDisposition('blocking')"], | |
["mod+shift+o", "Show / hide older comments", "toggleCurrentDiscussionOlderComments()"], | |
["mod+shift+p", "Toggle draft preview", "toggleCurrentDraftPreview()"], | |
[null, "Delete comment", "deleteDraft()"], | |
[null, "Publish current comment", "sendCurrentComment()"], | |
[null, "Publish all comments", "sendAll()"], | |
[null, "Toggle bunny dropdown", "toggleOverlay()"], | |
[null, "Toggle status checks dropdown", "toggleRevisionStatus()"], | |
[null, "Toggle changes dropdown", "toggleChangesDropdown()"], | |
[null, "Toggle published message preview", "toggleSendAllPreviewDropdown()"], | |
[null, "Go to the file matrix", "visitFileMatrix()"], | |
["u", "Return to reviews dashboard", "navigate('/reviews')"] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment