]> git.eshelyaron.com Git - emacs.git/commitdiff
Add hideshow bindings analogous to outline mode
authorSusanne Oberhauser <froh@suse.com>
Wed, 24 Feb 2016 04:13:41 +0000 (15:13 +1100)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 24 Feb 2016 04:13:41 +0000 (15:13 +1100)
* lisp/progmodes/hideshow.el (hs-minor-mode-map): Add bindings
analogous to outline mode bindings (bug#15324).

Copyright-paperwork-exempt: yes

etc/NEWS
lisp/progmodes/hideshow.el

index ce84b48e9ab61c80dc35718d83555426f25219ec..679532b89c727d1297c865797f1788cc7f9b5601 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1547,6 +1547,10 @@ Use the INSIDE_EMACS environment variable instead.
 mode to send the same escape sequences that xterm does.  This makes
 things like forward-word in readline work.
 
+---
+** hideshow mode got four key bindings that are analogous to outline
+mode bindings: `C-c @ C-a',  `C-c @ C-t',  `C-c @ C-d', and `C-c @ C-e.'
+
 +++
 ** `save-excursion' does not save&restore the mark any more.
 Use `save-mark-and-excursion' if you want the old behavior.
index e5460009a5609376a0ca70855a84942ba18992cb..cabdf45458a4211076705336b0a12d6cb25d1029 100644 (file)
@@ -351,6 +351,10 @@ Use the command `hs-minor-mode' to toggle or set this variable.")
     (define-key map "\C-c@\C-\M-s"    'hs-show-all)
     (define-key map "\C-c@\C-l"              'hs-hide-level)
     (define-key map "\C-c@\C-c"              'hs-toggle-hiding)
+    (define-key map "\C-c@\C-a"       'hs-show-all)
+    (define-key map "\C-c@\C-t"       'hs-hide-all)
+    (define-key map "\C-c@\C-d"       'hs-hide-block)
+    (define-key map "\C-c@\C-e"       'hs-toggle-hiding)
     (define-key map [(shift mouse-2)] 'hs-mouse-toggle-hiding)
     map)
   "Keymap for hideshow minor mode.")