Skip to content

Commit

Permalink
Add show last search in all finito buffers
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurenceWarne committed Feb 19, 2024
1 parent 47ab84e commit b4f1c77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ Most of the features can be navigated through via the transient prefix command `
| `w` | Copy the title of the book at point to the kill ring |
| `g` | Refresh the buffer |
| `M` | Toggle display of minimal mode |
| `l` | Edit the last search |
| `C-m` | Open the "My Books" collection |
| `C-r` | Open the "Currently Reading" collection |

Expand All @@ -114,7 +115,6 @@ Most of the features can be navigated through via the transient prefix command `

| Key | Action |
|-----|-------------------------------------------------------|
| `l` | Edit the last search |
| `d` | Toggle display of descriptions for the current buffer |

(in addition to all the [base bindings](#bindings-available-in-all-finito-view-buffers))
Expand Down
2 changes: 1 addition & 1 deletion finito.el
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,7 @@ request is successful"
(define-key map "d" #'finito-toggle-show-descriptions)
(define-key map "M" #'finito-toggle-minimal)
(define-key map "g" #'revert-buffer)
(define-key map "l" #'finito-replay-search)
(define-key map (kbd "C-m") #'finito-open-my-books-collection)
(define-key map (kbd "C-r") #'finito-open-currently-reading-collection)
map))
Expand All @@ -486,7 +487,6 @@ The following commands are available in this mode:
(defvar finito-search-view-mode-map
(let ((map (make-sparse-keymap)))
(suppress-keymap map t)
(define-key map "l" #'finito-replay-search)
map))

(define-derived-mode finito-search-view-mode
Expand Down

0 comments on commit b4f1c77

Please sign in to comment.