Don't run outline-level in the middle of a line (Fix #72)

master
Thibault Polge 7 years ago
parent ee1fb1c3e9
commit 4c6107da8f
No known key found for this signature in database
GPG Key ID: 1B1336171A0B9064
  1. 2
      outshine.el

@ -1767,7 +1767,7 @@ With a numeric prefix ARG, show all headlines up to that level."
((save-excursion
(beginning-of-line)
(looking-at outline-regexp))
(max 1 (funcall outline-level)))
(max 1 (save-excursion (beginning-of-line) (funcall outline-level))))
(t 1))))
(outline-hide-sublevels toplevel))
(outshine--cycle-message "OVERVIEW")

Loading…
Cancel
Save