From c73bc89e663290649e4c9a89b15f96b885bcd736 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Thu, 8 Jul 2021 23:00:03 -0400 Subject: [PATCH] * lisp/outline.el (outline-mode-cycle-map): Don't bind `tab`. Since it would take precedence over bindings for TAB in higher precedence maps. --- lisp/outline.el | 1 - 1 file changed, 1 deletion(-) diff --git a/lisp/outline.el b/lisp/outline.el index 68b8f4b6dda..0bb74ffd64a 100644 --- a/lisp/outline.el +++ b/lisp/outline.el @@ -182,7 +182,6 @@ in the file it applies to.") ;; Only takes effect if point is on a heading. :filter ,(lambda (cmd) (when (outline-on-heading-p) cmd))))) - (define-key map [tab] tab-binding) (define-key map (kbd "TAB") tab-binding) (define-key map (kbd "") #'outline-cycle-buffer)) map) -- 2.39.2