1
0
mirror of https://codeberg.org/cage/tinmop/ synced 2025-01-31 04:24:48 +01:00

- changed keychord to repeat search using the latest search criteria used in a previous search.

This commit is contained in:
cage 2023-07-31 17:53:48 +02:00
parent 85752eb02d
commit 05b623ddf7
3 changed files with 10 additions and 11 deletions

View File

@ -649,9 +649,6 @@ delete-and-move-previous
\fBN d \fP
delete-notifications
.TP
\fBN \fP
repeat-search
.TP
\fBP \fP
poll-vote
.TP
@ -661,10 +658,13 @@ thread-mark-prevent-delete-selected-message
\fBX \fP
refresh-thread-totally
.TP
\fB\\\\ b \fP
\fB\\ \\ \fP
repeat-search
.TP
\fB\\ b \fP
thread-search-previous-message-body
.TP
\fB\\\\ m \fP
\fB\\ m \fP
thread-search-previous-message-meta
.TP
\fBc \fP

View File

@ -367,12 +367,12 @@
- M :: print-mentions
- M-u :: delete-and-move-previous
- N d :: delete-notifications
- N :: repeat-search
- P :: poll-vote
- U :: thread-mark-prevent-delete-selected-message
- X :: refresh-thread-totally
- \\\\ b :: thread-search-previous-message-body
- \\\\ m :: thread-search-previous-message-meta
- \\ \\ :: repeat-search
- \\ b :: thread-search-previous-message-body
- \\ m :: thread-search-previous-message-meta
- c :: compose-message
- d :: delete-and-move-next
- dc :: thread-mark-delete-selected-message

View File

@ -330,14 +330,14 @@
(define-key "N d" #'delete-notifications *thread-keymap*)
(define-key "N" #'repeat-search *thread-keymap*)
(define-key "P" #'poll-vote *thread-keymap*)
(define-key "U" #'thread-mark-prevent-delete-selected-message *thread-keymap*)
(define-key "X" #'refresh-thread-totally *thread-keymap*)
(define-key "\\\\ \\\\" #'repeat-search *thread-keymap*)
(define-key "\\\\ b" #'thread-search-previous-message-body *thread-keymap*)
(define-key "\\\\ m" #'thread-search-previous-message-meta *thread-keymap*)
@ -380,7 +380,6 @@
(define-key "|" #'send-message-to-pipe *thread-keymap*)
;; message window keymap
(define-key "/" #'message-search-regex *message-keymap*)