From f9acbb689b08bce001106abd5af87e438780e940 Mon Sep 17 00:00:00 2001 From: tj Date: Tue, 8 Oct 2013 19:33:06 +0200 Subject: [PATCH] Keybinding for changed to TAB to make it work on the console too. --- outshine.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/outshine.el b/outshine.el index ccccdea..5899047 100644 --- a/outshine.el +++ b/outshine.el @@ -1625,11 +1625,16 @@ i.e. the text following the regexp match until the next space character." ;; Adapted from `org-mode' and `outline-mode-easy-bindings' ;; Visibility Cycling +;; (outshine-define-key-with-fallback +;; outline-minor-mode-map (kbd "") +;; (outline-cycle arg) (outline-on-heading-p)) (outshine-define-key-with-fallback - outline-minor-mode-map (kbd "") + outline-minor-mode-map (kbd "TAB") (outline-cycle arg) (outline-on-heading-p)) (define-key outline-minor-mode-map (kbd "") 'outshine-cycle-buffer) +;; (define-key +;; outline-minor-mode-map (kbd "BACKTAB") 'outshine-cycle-buffer) (outshine-define-key-with-fallback outline-minor-mode-map (kbd "M-") (outline-hide-more) (outline-on-heading-p))