emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Multi string search of org entries
@ 2011-12-15 17:56 Tom
  2012-01-05 10:11 ` Bastien
  0 siblings, 1 reply; 7+ messages in thread
From: Tom @ 2011-12-15 17:56 UTC (permalink / raw)
  To: emacs-orgmode

This package is a variant of this one:

http://thread.gmane.org/gmane.emacs.orgmode/49887


It supports matching multiple substrings in any order in
the whole entry (heading+body) and it also highlights the matches.

So, for example this entry


* Fenton running on the field

Dog having fun in nature.

http://www.youtube.com/watch?v=3GRSbr0EYYU



can be matched by the query:

dog run youtube



http://www.emacswiki.org/emacs/org-search-goto-ml.el


The search method is more complex, so it may be a bit slower than
the previous variants.

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

* Re: Multi string search of org entries
  2011-12-15 17:56 Multi string search of org entries Tom
@ 2012-01-05 10:11 ` Bastien
  2012-01-05 14:48   ` Tom
  2012-01-05 15:10   ` Dangling link [was: Re: Multi string search of org entries] François Pinard
  0 siblings, 2 replies; 7+ messages in thread
From: Bastien @ 2012-01-05 10:11 UTC (permalink / raw)
  To: Tom; +Cc: emacs-orgmode

Hi Tom,

Tom <adatgyujto@gmail.com> writes:

> This package is a variant of this one:
>
> http://thread.gmane.org/gmane.emacs.orgmode/49887

I just added org-occur-goto.el, org-search-goto.el and
org-search-goto-ml.el to worg:

  http://orgmode.org/worg/org-contrib/

Please feel free to suggest any better description, I 
just took the one from the commentary section of the .el
file.

Thanks!

-- 
 Bastien

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

* Re: Multi string search of org entries
  2012-01-05 10:11 ` Bastien
@ 2012-01-05 14:48   ` Tom
  2012-01-09  9:27     ` Thomas Holst
  2012-01-05 15:10   ` Dangling link [was: Re: Multi string search of org entries] François Pinard
  1 sibling, 1 reply; 7+ messages in thread
From: Tom @ 2012-01-05 14:48 UTC (permalink / raw)
  To: emacs-orgmode

Bastien <bzg <at> altern.org> writes:

> 
> Please feel free to suggest any better description, I 
> just took the one from the commentary section of the .el
> file.

They look fine to me which is not suprising, because I wrote these
descriptions in the first place. :)

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

* Dangling link [was: Re: Multi string search of org entries]
  2012-01-05 10:11 ` Bastien
  2012-01-05 14:48   ` Tom
@ 2012-01-05 15:10   ` François Pinard
  2012-01-09  9:44     ` Bastien
  1 sibling, 1 reply; 7+ messages in thread
From: François Pinard @ 2012-01-05 15:10 UTC (permalink / raw)
  To: emacs-orgmode

Bastien <bzg@altern.org> writes:

>   http://orgmode.org/worg/org-contrib/

Interesting resource, thanks! :-)

Glancing through it, I notice in section org-R.el that the URL for
"documented in the manual" is dangling.

François

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

* Re: Multi string search of org entries
  2012-01-05 14:48   ` Tom
@ 2012-01-09  9:27     ` Thomas Holst
  2012-01-09 13:49       ` Tom
  0 siblings, 1 reply; 7+ messages in thread
From: Thomas Holst @ 2012-01-09  9:27 UTC (permalink / raw)
  To: Tom; +Cc: emacs-orgmode@gnu.org

[-- Attachment #1: Type: text/plain, Size: 617 bytes --]

Hi Tom,

· On Jan 05 2012, Tom <adatgyujto@gmail.com> wrote:
> Bastien <bzg <at> altern.org> writes:
>
>> 
>> Please feel free to suggest any better description, I 
>> just took the one from the commentary section of the .el
>> file.
>
> They look fine to me which is not suprising, because I wrote these
> descriptions in the first place. :)

I downloaded org-search-goto-ml.el and tried

  (require 'org-search-goto-ml)

which failed. This is because of the (provide ...) statement.

Attached is a patch which corrects this line.

-- 
Mit freundlichen Grüßen / Best regards 

Thomas Holst 

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: patch --]
[-- Type: text/x-patch, Size: 633 bytes --]

From 42aa4ffcb6e36d3cf4df1c24796a6ae4c995052f Mon Sep 17 00:00:00 2001
From: Thomas Holst <Thomas.Holst@de.bosch.com>
Date: Mon, 9 Jan 2012 10:20:58 +0100
Subject: [PATCH] org-search-goto-ml.el: corrected the proviede statement

---
 org-search-goto-ml.el |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/org-search-goto-ml.el b/org-search-goto-ml.el
index 52b473a..4668401 100755
--- a/org-search-goto-ml.el
+++ b/org-search-goto-ml.el
@@ -298,5 +298,5 @@
 
 
 
-(provide 'org-search-goto)
-;;; org-search-goto.el ends here
+(provide 'org-search-goto-ml)
+;;; org-search-goto-ml.el ends here
-- 
1.7.5.1


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

* Re: Dangling link [was: Re: Multi string search of org entries]
  2012-01-05 15:10   ` Dangling link [was: Re: Multi string search of org entries] François Pinard
@ 2012-01-09  9:44     ` Bastien
  0 siblings, 0 replies; 7+ messages in thread
From: Bastien @ 2012-01-09  9:44 UTC (permalink / raw)
  To: François Pinard; +Cc: emacs-orgmode

pinard@iro.umontreal.ca (François Pinard) writes:

> Glancing through it, I notice in section org-R.el that the URL for
> "documented in the manual" is dangling.

Fixed, thanks!

-- 
 Bastien

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

* Re: Multi string search of org entries
  2012-01-09  9:27     ` Thomas Holst
@ 2012-01-09 13:49       ` Tom
  0 siblings, 0 replies; 7+ messages in thread
From: Tom @ 2012-01-09 13:49 UTC (permalink / raw)
  To: emacs-orgmode

Thomas Holst <thomas.holst <at> de.bosch.com> writes:
> 
> Attached is a patch which corrects this line.
> 

Applied, thanks.

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

end of thread, other threads:[~2012-01-09 13:50 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-12-15 17:56 Multi string search of org entries Tom
2012-01-05 10:11 ` Bastien
2012-01-05 14:48   ` Tom
2012-01-09  9:27     ` Thomas Holst
2012-01-09 13:49       ` Tom
2012-01-05 15:10   ` Dangling link [was: Re: Multi string search of org entries] François Pinard
2012-01-09  9:44     ` Bastien

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).