help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Narrow: How to hide a specific part?


From: daniel
Subject: Re: Narrow: How to hide a specific part?
Date: Mon, 10 Jun 2013 16:04:10 +0100

2013/6/10 Marius Hofert <marius.hofert@math.ethz.ch>

> Hi,
>
> hide-region works, unhide-region does not (no matter whether I first
> select the 'hidden region' or not)



unhide-region should make visible all the areas that are inside the current
region

Or try this:

(defun unhide-all ()
  (interactive)
  (loop for ov in (overlays-in (point-min) (point-max))
if (overlay-get ov 'my-overlay)
 do (delete-overlay ov)
)
  )


reply via email to

[Prev in Thread] Current Thread [Next in Thread]