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: Marius Hofert
Subject: Re: Narrow: How to hide a specific part?
Date: Mon, 10 Jun 2013 17:12:39 +0200

Okay, thanks a lot!

Cheers,

Marius

On Mon, Jun 10, 2013 at 5:04 PM, daniel <idnael@gmail.com> wrote:
> 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]