emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/embark fa0ef92a96 6/9: Add {, } for outline navigation


From: ELPA Syncer
Subject: [elpa] externals/embark fa0ef92a96 6/9: Add {, } for outline navigation in collect buffers
Date: Mon, 2 May 2022 09:57:33 -0400 (EDT)

branch: externals/embark
commit fa0ef92a9625bde38bd89ea6cdc94c59ad205604
Author: Omar Antolín <omar.antolin@gmail.com>
Commit: Omar Antolín <omar.antolin@gmail.com>

    Add {, } for outline navigation in collect buffers
    
    Also, fix the old grid-view era bindings for {forward,backward}-button
    and E for export (e was a typo!).
---
 embark.el | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/embark.el b/embark.el
index 5872070dec..f207730ec8 100644
--- a/embark.el
+++ b/embark.el
@@ -2675,18 +2675,18 @@ If NESTED is non-nil subkeymaps are not flattened."
   ("A" embark-act-all)
   ("M-a" embark-collect-direct-action-minor-mode)
   ("z" embark-collect-zebra-minor-mode)
-  ("e" embark-export)
+  ("E" embark-export)
   ("t" embark-collect-toggle-marks)
   ("m" embark-collect-mark)
   ("u" embark-collect-unmark)
   ("U" embark-collect-unmark-all)
   ("s" isearch-forward)
-  ("f" forward-button)
-  ("b" backward-button)
-  ("<right>" forward-button)
-  ("<left>" backward-button)
+  ("n" forward-button)
+  ("p" backward-button)
   ([remap forward-paragraph] 'outline-next-heading)
-  ([remap backward-paragraph] 'outline-previous-heading))
+  ("}" 'outline-next-heading)
+  ([remap backward-paragraph] 'outline-previous-heading)
+  ("{" 'outline-previous-heading))
 
 (define-derived-mode embark-collect-mode tabulated-list-mode "Embark Collect"
   "List of candidates to be acted on.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]