all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Copy/iSearch/Occur on folded outline view?
@ 2013-02-04  9:47 Thorsten Jolitz
  2013-02-04 21:00 ` Bastien
  0 siblings, 1 reply; 19+ messages in thread
From: Thorsten Jolitz @ 2013-02-04  9:47 UTC (permalink / raw
  To: help-gnu-emacs


Hi List, 

sometimes I would like to copy parts of a (partly) folded outline view,
or do some searching (isearch, occur) only on the visible headlines. Is
there a way to make these commands act only on the visible parts of the
folded buffer?

-- 
cheers,
Thorsten





^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Copy/iSearch/Occur on folded outline view?
  2013-02-04  9:47 Copy/iSearch/Occur on folded outline view? Thorsten Jolitz
@ 2013-02-04 21:00 ` Bastien
  2013-02-04 23:13   ` Thorsten Jolitz
       [not found]   ` <mailman.19034.1360022396.855.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 19+ messages in thread
From: Bastien @ 2013-02-04 21:00 UTC (permalink / raw
  To: Thorsten Jolitz; +Cc: help-gnu-emacs

Thorsten Jolitz <tjolitz@googlemail.com> writes:

> sometimes I would like to copy parts of a (partly) folded outline view,
> or do some searching (isearch, occur) only on the visible headlines. Is
> there a way to make these commands act only on the visible parts of the
> folded buffer?

For isearch, you have `search-invisible':

,----
| Its value is open
| 
| Documentation:
| If t incremental search can match hidden text.
| A nil value means don't match invisible text.
| When the value is `open', if the text matched is made invisible by
| an overlay having an `invisible' property and that overlay has a property
| `isearch-open-invisible', then incremental search will show the contents.
| (This applies when using `outline.el' and `hideshow.el'.)
| See also `reveal-mode' if you want overlays to automatically be opened
| whenever point is in one of them.
`----

HTH,

-- 
 Bastien



^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Copy/iSearch/Occur on folded outline view?
  2013-02-04 21:00 ` Bastien
@ 2013-02-04 23:13   ` Thorsten Jolitz
       [not found]   ` <mailman.19034.1360022396.855.help-gnu-emacs@gnu.org>
  1 sibling, 0 replies; 19+ messages in thread
From: Thorsten Jolitz @ 2013-02-04 23:13 UTC (permalink / raw
  To: help-gnu-emacs

Bastien <bzg@altern.org> writes:

> Thorsten Jolitz <tjolitz@googlemail.com> writes:
>
>> sometimes I would like to copy parts of a (partly) folded outline view,
>> or do some searching (isearch, occur) only on the visible headlines. Is
>> there a way to make these commands act only on the visible parts of the
>> folded buffer?
>
> For isearch, you have `search-invisible':
> HTH,

yes, thanks for the tip.

-- 
cheers,
Thorsten




^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Copy/iSearch/Occur on folded outline view?
       [not found]   ` <mailman.19034.1360022396.855.help-gnu-emacs@gnu.org>
@ 2013-02-05 20:17     ` Michael Heerdegen
  2013-02-05 22:13       ` Thorsten Jolitz
       [not found]       ` <mailman.19096.1360102465.855.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 19+ messages in thread
From: Michael Heerdegen @ 2013-02-05 20:17 UTC (permalink / raw
  To: help-gnu-emacs

Thorsten Jolitz <tjolitz@gmail.com> writes:

> > For isearch, you have `search-invisible':
> > HTH,
>
> yes, thanks for the tip.

You may also consider to define an toggle command for
`search-invisible', and bind it in `isearch-mode-map', like this


--8<---------------cut here---------------start------------->8---
(require 'cl-lib)

(defun isearch-cycle-search-invisible ()
  "Cycle the value of `search-invisible'.
Bound to \\<isearch-mode-map>\\[isearch-cycle-search-invisible] in `iseach'."
  (interactive)
  (setq search-invisible
        (cl-case search-invisible
          ((nil) t)
          ((t)   'open)
          (else  nil)))
  (message "search-invisible: %s" search-invisible)
  (sit-for 1.)
  (setq isearch-success t isearch-adjusted t)
  (isearch-update))

(add-hook
 'isearch-mode-hook
 (lambda ()
   (make-variable-buffer-local #'search-invisible)
   (define-key isearch-mode-map [(meta ?i)] #'isearch-cycle-search-invisible)))
--8<---------------cut here---------------end--------------->8---

This let's you cycle `search-invisible' while isearching with M-i.


Regards,

Michael.



^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Copy/iSearch/Occur on folded outline view?
  2013-02-05 20:17     ` Michael Heerdegen
@ 2013-02-05 22:13       ` Thorsten Jolitz
  2013-02-06  6:33         ` Drew Adams
       [not found]       ` <mailman.19096.1360102465.855.help-gnu-emacs@gnu.org>
  1 sibling, 1 reply; 19+ messages in thread
From: Thorsten Jolitz @ 2013-02-05 22:13 UTC (permalink / raw
  To: help-gnu-emacs

Michael Heerdegen <michael_heerdegen@web.de> writes:

> You may also consider to define an toggle command for
> `search-invisible', and bind it in `isearch-mode-map'

very nice, thank you, I had to install cl-lib first, but then it works
like a charm, very helpfull when even the collapsed headlines (3 levels)
of your .emacs are some 260 lines. 

The keybinding does not work though, M-i keeps bound to

,--------------------
| It is bound to M-i.
| (tab-to-tab-stop)
`--------------------

after evaluating your code. 

And when I toggle back from isearch-invisible to isearch, big parts of the
buffer turn pink, but that might be totally unrelated and just a
side-effect of some other configuration.

-- 
cheers,
Thorsten




^ permalink raw reply	[flat|nested] 19+ messages in thread

* RE: Copy/iSearch/Occur on folded outline view?
  2013-02-05 22:13       ` Thorsten Jolitz
@ 2013-02-06  6:33         ` Drew Adams
  2013-02-06  9:12           ` how to use C-+ in isearch+? (was: Re: Copy/iSearch/Occur on folded outline view?) Gregor Zattler
                             ` (3 more replies)
  0 siblings, 4 replies; 19+ messages in thread
From: Drew Adams @ 2013-02-06  6:33 UTC (permalink / raw
  To: 'Thorsten Jolitz', help-gnu-emacs

> > You may also consider to define an toggle command for
> > `search-invisible', and bind it in `isearch-mode-map'
> 
> very nice, thank you, I had to install cl-lib first, but then it works
> like a charm, very helpfull when even the collapsed headlines 
> (3 levels) of your .emacs are some 260 lines. 

FYI, Isearch+ also provides toggle key `C-+' for this.

However, unlike Michael's suggestion, it does not cycle among `t', `nil', and
`open'.  Instead, it toggles between `nil' and whichever of `t' and `open' you
prefer (see option `search-invisible').
http://www.emacswiki.org/cgi-bin/wiki/IsearchPlus




^ permalink raw reply	[flat|nested] 19+ messages in thread

* how to use C-+ in isearch+? (was: Re: Copy/iSearch/Occur on folded outline view?)
  2013-02-06  6:33         ` Drew Adams
@ 2013-02-06  9:12           ` Gregor Zattler
       [not found]           ` <mailman.19117.1360142038.855.help-gnu-emacs@gnu.org>
                             ` (2 subsequent siblings)
  3 siblings, 0 replies; 19+ messages in thread
From: Gregor Zattler @ 2013-02-06  9:12 UTC (permalink / raw
  To: help-gnu-emacs

Hi Drew,
* Drew Adams <drew.adams@oracle.com> [05. Feb. 2013]:
> FYI, Isearch+ also provides toggle key `C-+' for this.
[...]
> http://www.emacswiki.org/cgi-bin/wiki/IsearchPlus

This is what I need to cope with my org files!

I installed and initialized it as described in the file.  

But when I do isearch-forward-regexp (which is bound to C-s in my
init.el) and then C-+ [1] cursor moves to the first `+' sign
which is in an invisible part of the file (actually a drawer in
an org file).

What am I doing wrong?

Ciao, Gregor

Footnotes:

[1] C-+ meaning Control-Key and the plus sign on the normal
keys, not at the keypad (which my laptop does not have), yes?

-- 
 -... --- .-. . -.. ..--.. ...-.-



^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Copy/iSearch/Occur on folded outline view?
       [not found]       ` <mailman.19096.1360102465.855.help-gnu-emacs@gnu.org>
@ 2013-02-06 13:39         ` Michael Heerdegen
  2013-02-06 17:20           ` Thorsten Jolitz
  0 siblings, 1 reply; 19+ messages in thread
From: Michael Heerdegen @ 2013-02-06 13:39 UTC (permalink / raw
  To: help-gnu-emacs

Thorsten Jolitz <tjolitz@gmail.com> writes:

> The keybinding does not work though, M-i keeps bound to
>
> ,--------------------
> | It is bound to M-i.
> | (tab-to-tab-stop)
> `--------------------
>
> after evaluating your code. 

Works for me, tested in emacs -Q.  Note that you must hit M-i while
isearch is active - it's not a global binding.

> And when I toggle back from isearch-invisible to isearch, big parts of the
> buffer turn pink, but that might be totally unrelated and just a
> side-effect of some other configuration.

Dunno why you see that, sorry, I never experienced that.


Regards,

Michael.



^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: how to use C-+ in isearch+?
       [not found]           ` <mailman.19117.1360142038.855.help-gnu-emacs@gnu.org>
@ 2013-02-06 13:59             ` Michael Heerdegen
  2013-02-06 14:49               ` SOLVED (was: Re: how to use C-+ in isearch+?) Gregor Zattler
  0 siblings, 1 reply; 19+ messages in thread
From: Michael Heerdegen @ 2013-02-06 13:59 UTC (permalink / raw
  To: help-gnu-emacs

Hi Gregor, hi Drew,

> But when I do isearch-forward-regexp (which is bound to C-s in my
> init.el) and then C-+ [1] cursor moves to the first `+' sign
> which is in an invisible part of the file (actually a drawer in
> an org file).

Giving it a try, this works perfect for me.

Gregor, are you sure that your keyboard is able to generate that key
event?  What do you see if you hit C-+ in some buffer at top level
(outside isearch)?

Do the other isearch+ bindings work?

This is the binding done in isearch+:

(define-key isearch-mode-map [(control ?+)] 'isearchp-toggle-invisible)

You may try to replace [(control ?+)] by another key and see if that
works.

Maybe Drew can help more.


Regards,

Michael.



^ permalink raw reply	[flat|nested] 19+ messages in thread

* SOLVED (was: Re: how to use C-+ in isearch+?)
  2013-02-06 13:59             ` how to use C-+ in isearch+? Michael Heerdegen
@ 2013-02-06 14:49               ` Gregor Zattler
  0 siblings, 0 replies; 19+ messages in thread
From: Gregor Zattler @ 2013-02-06 14:49 UTC (permalink / raw
  To: help-gnu-emacs

Hi Michael,
* Michael Heerdegen <michael_heerdegen@web.de> [06. Feb. 2013]:
>> But when I do isearch-forward-regexp (which is bound to C-s in my
>> init.el) and then C-+ [1] cursor moves to the first `+' sign
>> which is in an invisible part of the file (actually a drawer in
>> an org file).
> 
> Giving it a try, this works perfect for me.
> 
> Gregor, are you sure that your keyboard is able to generate that key
> event?  

You are right and I'm stupid for not mentioning that I use Emacs
mainly in a terminal emulator.[1]  No C-+ in these (at least not in
rxvt-unicode).  

> (define-key isearch-mode-map [(control ?+)] 'isearchp-toggle-invisible)
> 
> You may try to replace [(control ?+)] by another key and see if that
> works.

I tested this with `meta' instead of `control' and it now works
like a charm.

Thanks to you for your hint and thanks to Drew for this amazing
package.   

Ciao, Gregor

Footnotes:

[1] It's so much faster and the fonts are more crisp...

-- 
 -... --- .-. . -.. ..--.. ...-.-



^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Copy/iSearch/Occur on folded outline view?
  2013-02-06  6:33         ` Drew Adams
  2013-02-06  9:12           ` how to use C-+ in isearch+? (was: Re: Copy/iSearch/Occur on folded outline view?) Gregor Zattler
       [not found]           ` <mailman.19117.1360142038.855.help-gnu-emacs@gnu.org>
@ 2013-02-06 15:56           ` Bastien
  2013-02-06 16:51             ` Drew Adams
       [not found]           ` <mailman.19150.1360166607.855.help-gnu-emacs@gnu.org>
  3 siblings, 1 reply; 19+ messages in thread
From: Bastien @ 2013-02-06 15:56 UTC (permalink / raw
  To: Drew Adams; +Cc: help-gnu-emacs, 'Thorsten Jolitz'

Hi Drew,

"Drew Adams" <drew.adams@oracle.com> writes:

>> > You may also consider to define an toggle command for
>> > `search-invisible', and bind it in `isearch-mode-map'
>> 
>> very nice, thank you, I had to install cl-lib first, but then it works
>> like a charm, very helpfull when even the collapsed headlines 
>> (3 levels) of your .emacs are some 260 lines. 
>
> FYI, Isearch+ also provides toggle key `C-+' for this.

I'm willing to allow this for org-mode.

Do you mind if I borrow your idea and add this code to Org?

Thanks,

(define-key isearch-mode-map [(control ?+)] 'org-isearch-toggle-invisible)

(defvar org-search-invisibile-default)
(defun org-isearch-toggle-invisible ()
  "Toggle regexp searching on or off."
  (interactive)
  (unless (boundp 'org-search-invisibile-default)
    (setq org-search-invisibile-default search-invisible))
  (setq search-invisible
	(cond ((eq search-invisible 'open) nil)
	      ((eq search-invisible nil) 'open)))
  (let ((message-log-max nil))
    (message "%s%s [search %svisible]"
	     (isearch-message-prefix nil isearch-nonincremental)
	     isearch-message
	     (if search-invisible "in" "")))
  (setq isearch-success t isearch-adjusted t)
  (sit-for 1)
  (add-hook 'isearch-mode-end-hook
	    (lambda () (setq search-invisible org-search-invisibile-default)))
  (isearch-update))

-- 
 Bastien



^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Copy/iSearch/Occur on folded outline view?
       [not found]           ` <mailman.19150.1360166607.855.help-gnu-emacs@gnu.org>
@ 2013-02-06 16:26             ` Michael Heerdegen
  2013-02-06 16:52               ` Drew Adams
                                 ` (2 more replies)
  0 siblings, 3 replies; 19+ messages in thread
From: Michael Heerdegen @ 2013-02-06 16:26 UTC (permalink / raw
  To: help-gnu-emacs

Hello Bastien,

> > FYI, Isearch+ also provides toggle key `C-+' for this.
>
> I'm willing to allow this for org-mode.

Mainly FYI: Please note that this kind of solution may users of org make
think that `isearch-query-replace' and `isearch-query-replace-regexp'
(bound to M-% and C-M-%) would be able to handle invisible text.  This
is not the case, however - these commands never ignore invisible text
and don't hesitate to replace stuff in regions that the user doesn't
see.  This is dangerous!

I filed two bug reports about these problems some time ago:

  24.1.50; Suggestion: Let M-i in isearch cycle `search-invisible'

  feature request: `isearch-query-replace' should open invisible text

Sadly, both things were not yet realized.  But nevertheless I think it
would be good if we could find a solution for the whole of Emacs, not
only for Org.  I think org is not very special in that regards, this
issue also applies e.g. for hs-minor-mode.  Although I'm not against a
temporary solution for org-mode alone.


Regards,

Michael.




^ permalink raw reply	[flat|nested] 19+ messages in thread

* RE: Copy/iSearch/Occur on folded outline view?
  2013-02-06 15:56           ` Copy/iSearch/Occur on folded outline view? Bastien
@ 2013-02-06 16:51             ` Drew Adams
  2013-02-06 16:54               ` Bastien
  0 siblings, 1 reply; 19+ messages in thread
From: Drew Adams @ 2013-02-06 16:51 UTC (permalink / raw
  To: 'Bastien'; +Cc: help-gnu-emacs, 'Thorsten Jolitz'

> > FYI, Isearch+ also provides toggle key `C-+' for this.
> 
> I'm willing to allow this for org-mode.
> Do you mind if I borrow your idea and add this code to Org?

No, of course I don't mind.  Everything that is in Isearch+ has been proposed to
Emacs Dev, but only a little has been adopted, after some time.




^ permalink raw reply	[flat|nested] 19+ messages in thread

* RE: Copy/iSearch/Occur on folded outline view?
  2013-02-06 16:26             ` Michael Heerdegen
@ 2013-02-06 16:52               ` Drew Adams
  2013-02-06 16:55               ` Bastien
       [not found]               ` <mailman.19161.1360169738.855.help-gnu-emacs@gnu.org>
  2 siblings, 0 replies; 19+ messages in thread
From: Drew Adams @ 2013-02-06 16:52 UTC (permalink / raw
  To: 'Michael Heerdegen', help-gnu-emacs

> > > FYI, Isearch+ also provides toggle key `C-+' for this.
> >
> > I'm willing to allow this for org-mode.
> 
> Mainly FYI: Please note that this kind of solution may users 
> of org make think that `isearch-query-replace' and
> `isearch-query-replace-regexp' (bound to M-% and C-M-%)
> would be able to handle invisible text.
>
> This is not the case, however - these commands never ignore
> invisible text and don't hesitate to replace stuff in regions
> that the user doesn't see.  This is dangerous!
> 
> I filed two bug reports about these problems some time ago:
> 24.1.50; Suggestion: Let M-i in isearch cycle `search-invisible'
> feature request: `isearch-query-replace' should open invisible text
> 
> Sadly, both things were not yet realized.

Yes, that's too bad.

FWIW, I tried searching in the bugs database for "search-invisible" in the
Subject line, and I could find only this one (#11378):
http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11378

> But nevertheless I think it would be good if we could find a
> solution for the whole of Emacs, not only for Org.

+1

But lacking a response in that direction from Emacs Dev, adding it to Org is a
start.  Eventually, Org users who are used to this would add to the request for
it for Emacs as a whole...

>  Although I'm not against a temporary solution for org-mode alone.

+1




^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Copy/iSearch/Occur on folded outline view?
  2013-02-06 16:51             ` Drew Adams
@ 2013-02-06 16:54               ` Bastien
  0 siblings, 0 replies; 19+ messages in thread
From: Bastien @ 2013-02-06 16:54 UTC (permalink / raw
  To: Drew Adams; +Cc: help-gnu-emacs, 'Thorsten Jolitz'

"Drew Adams" <drew.adams@oracle.com> writes:

>> > FYI, Isearch+ also provides toggle key `C-+' for this.
>> 
>> I'm willing to allow this for org-mode.
>> Do you mind if I borrow your idea and add this code to Org?
>
> No, of course I don't mind.  Everything that is in Isearch+ has been proposed to
> Emacs Dev, but only a little has been adopted, after some time.

Thanks.  But I agree with Michael, temporary cycling through 
the various `search-invisible' states should be in Emacs.

I will see if I can submit a patch.

-- 
 Bastien



^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Copy/iSearch/Occur on folded outline view?
  2013-02-06 16:26             ` Michael Heerdegen
  2013-02-06 16:52               ` Drew Adams
@ 2013-02-06 16:55               ` Bastien
       [not found]               ` <mailman.19161.1360169738.855.help-gnu-emacs@gnu.org>
  2 siblings, 0 replies; 19+ messages in thread
From: Bastien @ 2013-02-06 16:55 UTC (permalink / raw
  To: help-gnu-emacs

Hi Michael,

Michael Heerdegen <michael_heerdegen@web.de> writes:

> I filed two bug reports about these problems some time ago:
>
>   24.1.50; Suggestion: Let M-i in isearch cycle `search-invisible'
>
>   feature request: `isearch-query-replace' should open invisible
>   text

Can you send me the links to those reports?

> Sadly, both things were not yet realized.  But nevertheless I think it
> would be good if we could find a solution for the whole of Emacs, not
> only for Org.  I think org is not very special in that regards, this
> issue also applies e.g. for hs-minor-mode.  Although I'm not against a
> temporary solution for org-mode alone.

Agreed, I'll see what I can do -- unless someone else beats me to it.

-- 
 Bastien



^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Copy/iSearch/Occur on folded outline view?
  2013-02-06 13:39         ` Michael Heerdegen
@ 2013-02-06 17:20           ` Thorsten Jolitz
  0 siblings, 0 replies; 19+ messages in thread
From: Thorsten Jolitz @ 2013-02-06 17:20 UTC (permalink / raw
  To: help-gnu-emacs

Michael Heerdegen <michael_heerdegen@web.de> writes:

> Thorsten Jolitz <tjolitz@gmail.com> writes:
>
>> The keybinding does not work though, M-i keeps bound to
>>
>> ,--------------------
>> | It is bound to M-i.
>> | (tab-to-tab-stop)
>> `--------------------
>>
>> after evaluating your code. 
>
> Works for me, tested in emacs -Q.  Note that you must hit M-i while
> isearch is active - it's not a global binding.

ah, I wasn't aware of that, now it works here too, thanks. 

>> And when I toggle back from isearch-invisible to isearch, big parts of the
>> buffer turn pink, but that might be totally unrelated and just a
>> side-effect of some other configuration.
>
> Dunno why you see that, sorry, I never experienced that.

may that was just an artefact of some other configuration, I didn't see
it again. 

-- 
cheers,
Thorsten




^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Copy/iSearch/Occur on folded outline view?
       [not found]               ` <mailman.19161.1360169738.855.help-gnu-emacs@gnu.org>
@ 2013-02-06 18:46                 ` Michael Heerdegen
       [not found]                 ` <mailman.19178.1360176297.855.help-gnu-emacs@gnu.org>
  1 sibling, 0 replies; 19+ messages in thread
From: Michael Heerdegen @ 2013-02-06 18:46 UTC (permalink / raw
  To: help-gnu-emacs

Bastien <bzg@altern.org> writes:

> > I filed two bug reports about these problems some time ago:
> >
> >   24.1.50; Suggestion: Let M-i in isearch cycle `search-invisible'
> >
> >   feature request: `isearch-query-replace' should open invisible
> >   text
>
> Can you send me the links to those reports?

Tried to find a link for you under lists.gnu.org, but there, the thread
of the first one seems not to be complete, dunno why.

Are you able to use debbugs?  I entered "M-i in isearch" or "should open
invisible" respectively as search phrase, without any attributes, and
got the complete threads..

Apparently, Juri got quite far in implementing a patch based on isearch
filters, but the whole thing got stuck.  We have to revive
this thread somehow.


Regards,

Michael.






^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Copy/iSearch/Occur on folded outline view?
       [not found]                 ` <mailman.19178.1360176297.855.help-gnu-emacs@gnu.org>
@ 2013-02-06 19:06                   ` Michael Heerdegen
  0 siblings, 0 replies; 19+ messages in thread
From: Michael Heerdegen @ 2013-02-06 19:06 UTC (permalink / raw
  To: help-gnu-emacs

Michael Heerdegen <michael_heerdegen@web.de> writes:

> Are you able to use debbugs?

I was not very clear here. I meant the Gnu Elpa package of that name,
and the command `debbugs-gnu-search' that it provides.

Anyway, here are links to the threads at debbugs.gnu.org:

http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11378

http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11746


Regards,

Michael.




^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2013-02-06 19:06 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-04  9:47 Copy/iSearch/Occur on folded outline view? Thorsten Jolitz
2013-02-04 21:00 ` Bastien
2013-02-04 23:13   ` Thorsten Jolitz
     [not found]   ` <mailman.19034.1360022396.855.help-gnu-emacs@gnu.org>
2013-02-05 20:17     ` Michael Heerdegen
2013-02-05 22:13       ` Thorsten Jolitz
2013-02-06  6:33         ` Drew Adams
2013-02-06  9:12           ` how to use C-+ in isearch+? (was: Re: Copy/iSearch/Occur on folded outline view?) Gregor Zattler
     [not found]           ` <mailman.19117.1360142038.855.help-gnu-emacs@gnu.org>
2013-02-06 13:59             ` how to use C-+ in isearch+? Michael Heerdegen
2013-02-06 14:49               ` SOLVED (was: Re: how to use C-+ in isearch+?) Gregor Zattler
2013-02-06 15:56           ` Copy/iSearch/Occur on folded outline view? Bastien
2013-02-06 16:51             ` Drew Adams
2013-02-06 16:54               ` Bastien
     [not found]           ` <mailman.19150.1360166607.855.help-gnu-emacs@gnu.org>
2013-02-06 16:26             ` Michael Heerdegen
2013-02-06 16:52               ` Drew Adams
2013-02-06 16:55               ` Bastien
     [not found]               ` <mailman.19161.1360169738.855.help-gnu-emacs@gnu.org>
2013-02-06 18:46                 ` Michael Heerdegen
     [not found]                 ` <mailman.19178.1360176297.855.help-gnu-emacs@gnu.org>
2013-02-06 19:06                   ` Michael Heerdegen
     [not found]       ` <mailman.19096.1360102465.855.help-gnu-emacs@gnu.org>
2013-02-06 13:39         ` Michael Heerdegen
2013-02-06 17:20           ` Thorsten Jolitz

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.