aboutsummaryrefslogtreecommitdiff
path: root/pearl.el
diff options
context:
space:
mode:
Diffstat (limited to 'pearl.el')
-rw-r--r--pearl.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/pearl.el b/pearl.el
index ed183dd..236c95d 100644
--- a/pearl.el
+++ b/pearl.el
@@ -8092,13 +8092,17 @@ point. View-movement commands (run / publish / save-locally) live in
(define-key map "U" (cons "publish current view" #'pearl-publish-current-view))
(define-key map "d" (cons "save Linear view locally" #'pearl-save-linear-view-locally))
(define-key map "D" (cons "set default view" #'pearl-set-default-view))
+ (define-key map "s" (cons "sort view" #'pearl-set-sort))
+ (define-key map "g" (cons "group view" #'pearl-set-grouping))
+ (define-key map "r" (cons "reverse order" #'pearl-toggle-sort-order))
map)
"Pearl view commands; a sub-keymap of `pearl-prefix-map'.
Lowercase `l' / capital `L' run a local / Linear view; `c' / `e' / `k'
create / edit / delete a local view. `u' / `U' publish a named / the
current local view up to Linear; `d' saves a Linear view down into a new
local view. Capital `D' sets the default view `pearl-open-default-view'
-opens.")
+opens. `s' / `g' shape the active buffer (sort / group); `r' reverses the
+sort order.")
(defvar pearl-edit-map
(let ((map (make-sparse-keymap)))