-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add more options for startup folding levels #50
Comments
Thanks. |
Just as a heads up, I have this implemented on my local branch, but among other things it's waiting for #38 to be merged. The options are copied from the Org mode ones:
I don't think "content" is a particularly good word to describe showing all headlines but hiding body text, but it's probably better to follow Org conventions |
@yuhan0 Great!
I think we can both "lead the way" to better descriptions and follow convention at the same time. How about:
|
Thanks for merging! I wasn't referring to the description but the symbol |
@yuhan0 Sorry, I'm probably missing something here. But I can't seem to find this particular |
Sure, but I was referring to the description. :) |
@gusburs it wasn't in that PR or on any branch on Github now, I was just referencing a change I made on my own local copy - sorry for any confusion. |
@yuhan0 Oh, I see. I'll be looking forward to see it published then, when it is possible. Thank you very much. Indeed, the question of the point within a folded line deserves care. I've been playing with this (for the time being I simply added |
Yeah, that turns out to be a problem for plenty of commands which jump around the buffer at arbitrary positions like If you're interested to try it out in the meantime, here's the helper function - ;;;###autoload
(defun outshine-reveal-context (&optional arg)
"Expands the folded headline around the current point, (similar to what happens
during isearch.) Use this to advise functions which may jump to the interior of a
folded section."
(interactive)
(when (and outshine-mode
(invisible-p (point)) ;; faster than checking for heading
(not (outline-on-heading-p nil)))
(dolist (ov (overlays-at (point)))
(when (memq 'outline (overlay-properties ov))
(delete-overlay ov)))
;; (ignore-errors (save-excursion
;; (outline-back-to-heading t)
;; (outline-show-entry)
;; (outline-show-children)))
)) I started by using it to advise a list of functions which behave in that manner, but after a while found it easier to simply add it to the post-command-hook.
|
@yuhan0 FYI that function doesn't need to be autoloaded, as it won't be called (or certainly shouldn't be) until after Outshine is already loaded. |
This is a feature request. Org itself has more options as to the initial folded state of a buffer, namely the option
org-startup-folded
can receive valuesoverview
,showall
orcontent
. Outshine only offersoutshine-startup-folded-p
(and, implicitly, to start in ashowall
state). It would be nice if the equivalent ofcontent
could be also made available in Outshine.Outshine uses
outshine-startup-folded-p
in the following passage ofoutshine--minor-mode-activate
:Thus the initial folding is being dealt with with an
outline-mode
function. Butoutline-mode
already offers, besidesoutline-hide-sublevels
,outline-hide-body
and, if needed,outline-show-all
. Which means the necessary functions are readily available.I know the recent refactoring is drawing most of the attention as of late, but if some time could eventually be devoted to this minor improvement, it would be appreciated. By the way, thank you for the nice work being done here.
The text was updated successfully, but these errors were encountered: