diff --git a/doc/tinmop.man b/doc/tinmop.man index 38f0dec..f41232c 100644 --- a/doc/tinmop.man +++ b/doc/tinmop.man @@ -737,6 +737,9 @@ open-previous \fBn \fP thread-search-next-unread-message .TP +\fBu \fP +thread-search-next-undeleted-message +.TP \fBr \fP reply-message .TP diff --git a/doc/tinmop.org b/doc/tinmop.org index 02e9808..c578a56 100644 --- a/doc/tinmop.org +++ b/doc/tinmop.org @@ -416,6 +416,7 @@ - l :: open-message-link - left :: open-previous - n :: thread-search-next-unread-message +- u :: thread-search-next-undeleted-message - r :: reply-message - right :: open-next - s d :: status-tree->text diff --git a/etc/init.lisp b/etc/init.lisp index 974223e..69c9448 100644 --- a/etc/init.lisp +++ b/etc/init.lisp @@ -395,7 +395,7 @@ (define-key "n" #'thread-search-next-unread-message *thread-keymap*) -(define-key "C-u" #'thread-search-next-undeleted-message *thread-keymap*) +(define-key "u" #'thread-search-next-undeleted-message *thread-keymap*) (define-key "r" #'reply-message *thread-keymap*)