You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You're very welcome! Thank you for your feedback on outline-indent.
Please provide global minor mode. You can create it like this:
Activating outline-indent globally would enable it in contexts where it may not be appropriate (e.g., the minibuffer, or file types that do not rely on indentation, etc.). By keeping outline-indent mode local, users have greater control over where it is activated.
You can activate it across all programming modes the text modes, which behaves similarly to a global mode:
;; All programming modes
(add-hook'prog-mode-hook#'outline-indent-minor-mode)
(add-hook'text-mode-hook#'outline-indent-minor-mode)
However, I do not recommend the above.
It is preferable to enable outline-indent-minor-mode for specific modes like Python and YAML:
Hi. Thank you for this useful package.
Please provide global minor mode. You can create it like this:
The text was updated successfully, but these errors were encountered: