Add help entries for kill, yank, isearch

Change-Id: I13c074a5f67ff9ce3ef5c6819b72507ceadcfd4c
This commit is contained in:
James E. Blair 2015-10-27 10:35:39 +09:00
parent eae2e60084
commit 6f9e0ceb2f
2 changed files with 8 additions and 0 deletions

View File

@ -30,6 +30,12 @@ GLOBAL_HELP = (
"Search for changes"),
(keymap.LIST_HELD,
"List held changes"),
(keymap.KILL,
"Kill to end of line (editing)"),
(keymap.YANK,
"Yank from kill ring (editing)"),
(keymap.YANK_POP,
"Replace previous yank from kill ring (editing)"),
)
class TextButton(urwid.Button):

View File

@ -164,6 +164,8 @@ class BaseDiffView(urwid.WidgetWrap):
"Add an inline comment"),
(key(keymap.SELECT_PATCHSETS),
"Select old/new patchsets to diff"),
(key(keymap.INTERACTIVE_SEARCH),
"Interactive search"),
]
def __init__(self, app, new_revision_key):