unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* grep-at-point
@ 2017-01-11 17:48 Joe Riel
  2017-01-11 19:21 ` grep-at-point Aleksandar Simic
                   ` (5 more replies)
  0 siblings, 6 replies; 20+ messages in thread
From: Joe Riel @ 2017-01-11 17:48 UTC (permalink / raw)
  To: Help GNU Emacs

Before writing one, is there an elisp function
that returns a buffer of links to file locations
where the elisp symbol at point is used? 

I'm only concerned with the files in the current directory.
Am currently using M-x grep.   Maybe all I really need
is a grep-at-point function, which greps for the symbol at point.

-- 
Joe Riel




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

* Re: grep-at-point
  2017-01-11 17:48 grep-at-point Joe Riel
@ 2017-01-11 19:21 ` Aleksandar Simic
  2017-01-11 19:55   ` grep-at-point Kaushal Modi
  2017-01-11 19:42 ` grep-at-point Eli Zaretskii
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 20+ messages in thread
From: Aleksandar Simic @ 2017-01-11 19:21 UTC (permalink / raw)
  To: Help GNU Emacs

On Wed, Jan 11, 2017 at 5:48 PM, Joe Riel <joer@san.rr.com> wrote:

> Before writing one, is there an elisp function
> that returns a buffer of links to file locations
> where the elisp symbol at point is used?
>
> I'm only concerned with the files in the current directory.
> Am currently using M-x grep.   Maybe all I really need
> is a grep-at-point function, which greps for the symbol at point.


These answers from 2008 might be of interest:

https://lists.gnu.org/archive/html/help-gnu-emacs/2008-09/msg00630.html
https://lists.gnu.org/archive/html/help-gnu-emacs/2008-09/msg00640.html

Aleksandar


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

* Re: grep-at-point
  2017-01-11 17:48 grep-at-point Joe Riel
  2017-01-11 19:21 ` grep-at-point Aleksandar Simic
@ 2017-01-11 19:42 ` Eli Zaretskii
  2017-01-11 20:20   ` grep-at-point Kaushal Modi
  2017-01-11 19:56 ` grep-at-point Eric Abrahamsen
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 20+ messages in thread
From: Eli Zaretskii @ 2017-01-11 19:42 UTC (permalink / raw)
  To: help-gnu-emacs

> Date: Wed, 11 Jan 2017 09:48:46 -0800
> From: Joe Riel <joer@san.rr.com>
> 
> Before writing one, is there an elisp function
> that returns a buffer of links to file locations
> where the elisp symbol at point is used? 

In Emacs 25, try "M-x xref-find-references RET".



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

* Re: grep-at-point
  2017-01-11 19:21 ` grep-at-point Aleksandar Simic
@ 2017-01-11 19:55   ` Kaushal Modi
  0 siblings, 0 replies; 20+ messages in thread
From: Kaushal Modi @ 2017-01-11 19:55 UTC (permalink / raw)
  To: joer; +Cc: Aleksandar Simic, Help GNU Emacs

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

If you are open to installing the ag utility (
https://github.com/ggreer/the_silver_searcher ) and installing the counsel
package (available in GNU Elpa), you can use counsel-ag.

Below I am using counsel-ag to search for all instances of the symbol under
point 'ag-arguments' in the current directory.

[image: pasted1]


> On Wed, Jan 11, 2017 at 5:48 PM, Joe Riel <joer@san.rr.com> wrote:
>
> > Before writing one, is there an elisp function
> > that returns a buffer of links to file locations
> > where the elisp symbol at point is used?
> >
> > I'm only concerned with the files in the current directory.
> > Am currently using M-x grep.   Maybe all I really need
> > is a grep-at-point function, which greps for the symbol at point.
>
-- 

Kaushal Modi

[-- Attachment #2: pasted1 --]
[-- Type: image/png, Size: 52894 bytes --]

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

* Re: grep-at-point
  2017-01-11 17:48 grep-at-point Joe Riel
  2017-01-11 19:21 ` grep-at-point Aleksandar Simic
  2017-01-11 19:42 ` grep-at-point Eli Zaretskii
@ 2017-01-11 19:56 ` Eric Abrahamsen
  2017-01-11 20:15 ` grep-at-point John Mastro
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 20+ messages in thread
From: Eric Abrahamsen @ 2017-01-11 19:56 UTC (permalink / raw)
  To: help-gnu-emacs

Joe Riel <joer@san.rr.com> writes:

> Before writing one, is there an elisp function
> that returns a buffer of links to file locations
> where the elisp symbol at point is used? 
>
> I'm only concerned with the files in the current directory.
> Am currently using M-x grep.   Maybe all I really need
> is a grep-at-point function, which greps for the symbol at point.

Sounds like what you might actually be after is some sort of project
management package. I use projectile, with helm, and that provides all
kinds of commands like grep in project, multi-occur in project, etc,
that make it pretty easy to find what you're looking for.

Eric




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

* Re: grep-at-point
  2017-01-11 17:48 grep-at-point Joe Riel
                   ` (2 preceding siblings ...)
  2017-01-11 19:56 ` grep-at-point Eric Abrahamsen
@ 2017-01-11 20:15 ` John Mastro
  2017-01-11 20:46 ` grep-at-point Thien-Thi Nguyen
  2017-01-11 21:01 ` grep-at-point Drew Adams
  5 siblings, 0 replies; 20+ messages in thread
From: John Mastro @ 2017-01-11 20:15 UTC (permalink / raw)
  To: Help GNU Emacs

Joe Riel <joer@san.rr.com> wrote:
> Before writing one, is there an elisp function
> that returns a buffer of links to file locations
> where the elisp symbol at point is used?
>
> I'm only concerned with the files in the current directory.
> Am currently using M-x grep.   Maybe all I really need
> is a grep-at-point function, which greps for the symbol at point.

Sounds like `xref-find-references' (bound to M-? by default) might be
what you're looking for. It was introduced in Emacs 25.

    M-? runs the command xref-find-references (found in global-map),
    which is an interactive autoloaded compiled Lisp function in
    ‘xref.el’.

    It is bound to M-?.

    (xref-find-references IDENTIFIER)

    Find references to the identifier at point.
    With prefix argument, prompt for the identifier.



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

* Re: grep-at-point
  2017-01-11 19:42 ` grep-at-point Eli Zaretskii
@ 2017-01-11 20:20   ` Kaushal Modi
  2017-01-11 20:23     ` grep-at-point Eli Zaretskii
  0 siblings, 1 reply; 20+ messages in thread
From: Kaushal Modi @ 2017-01-11 20:20 UTC (permalink / raw)
  To: Eli Zaretskii, help-gnu-emacs

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

On Wed, Jan 11, 2017 at 3:17 PM Eli Zaretskii <eliz@gnu.org> wrote:

>
> In Emacs 25, try "M-x xref-find-references RET".
>

That's awesome! It took a bit longer for the search to finish, but it did
find everything :)

[image: pasted1]
-- 

Kaushal Modi

[-- Attachment #2: pasted1 --]
[-- Type: image/png, Size: 49136 bytes --]

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

* Re: grep-at-point
  2017-01-11 20:20   ` grep-at-point Kaushal Modi
@ 2017-01-11 20:23     ` Eli Zaretskii
  2017-01-11 21:09       ` grep-at-point Kaushal Modi
  2017-01-11 21:45       ` grep-at-point Marcin Borkowski
  0 siblings, 2 replies; 20+ messages in thread
From: Eli Zaretskii @ 2017-01-11 20:23 UTC (permalink / raw)
  To: help-gnu-emacs

> From: Kaushal Modi <kaushal.modi@gmail.com>
> Date: Wed, 11 Jan 2017 20:20:49 +0000
> 
>  In Emacs 25, try "M-x xref-find-references RET".
> 
> That's awesome! It took a bit longer for the search to finish, but it did find everything :)

Install GNU ID-Utils, and this command will be blazingly fast.  (By
default it uses Grep, I think.)



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

* Re: grep-at-point
  2017-01-11 17:48 grep-at-point Joe Riel
                   ` (3 preceding siblings ...)
  2017-01-11 20:15 ` grep-at-point John Mastro
@ 2017-01-11 20:46 ` Thien-Thi Nguyen
  2017-01-11 21:01 ` grep-at-point Drew Adams
  5 siblings, 0 replies; 20+ messages in thread
From: Thien-Thi Nguyen @ 2017-01-11 20:46 UTC (permalink / raw)
  To: help-gnu-emacs

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


() Joe Riel <joer@san.rr.com>
() Wed, 11 Jan 2017 09:48:46 -0800

   Am currently using M-x grep.

Did you try a prefix arg?  See ‘C-h f grep RET’ for more info.

-- 
Thien-Thi Nguyen -----------------------------------------------
 (defun responsep (query)
   (pcase (context query)
     (`(technical mailing-list) t)
     ...))                              748E A0E8 1CB8 A748 9BFA
--------------------------------------- 6CE4 6703 2224 4C80 7502


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 197 bytes --]

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

* RE: grep-at-point
  2017-01-11 17:48 grep-at-point Joe Riel
                   ` (4 preceding siblings ...)
  2017-01-11 20:46 ` grep-at-point Thien-Thi Nguyen
@ 2017-01-11 21:01 ` Drew Adams
  2017-01-11 21:29   ` grep-at-point Joe Riel
  5 siblings, 1 reply; 20+ messages in thread
From: Drew Adams @ 2017-01-11 21:01 UTC (permalink / raw)
  To: Joe Riel, Help GNU Emacs

> Before writing one, is there an elisp function
> that returns a buffer of links to file locations
> where the elisp symbol at point is used?
> 
> I'm only concerned with the files in the current directory.
> Am currently using M-x grep.   Maybe all I really need
> is a grep-at-point function, which greps for the symbol at point.

Doesn't `M-x grep RET M-n' give you what you want?  If point
is on a Lisp symbol then `M-n' yanks it as the default value.



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

* Re: grep-at-point
  2017-01-11 20:23     ` grep-at-point Eli Zaretskii
@ 2017-01-11 21:09       ` Kaushal Modi
  2017-01-11 21:32         ` grep-at-point Kaushal Modi
  2017-01-11 21:45       ` grep-at-point Marcin Borkowski
  1 sibling, 1 reply; 20+ messages in thread
From: Kaushal Modi @ 2017-01-11 21:09 UTC (permalink / raw)
  To: Eli Zaretskii, help-gnu-emacs

On Wed, Jan 11, 2017 at 4:03 PM Eli Zaretskii <eliz@gnu.org> wrote:

>
> Install GNU ID-Utils, and this command will be blazingly fast.  (By
> default it uses Grep, I think.)
>

Ah, I had never heard of that. But I do use something probably similar: GNU
Global.
https://www.gnu.org/software/global/

Would you point to how to set up xref to use that?

In the meanwhile, I will work on installing ID-Utils.
-- 

Kaushal Modi


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

* Re: grep-at-point
  2017-01-11 21:01 ` grep-at-point Drew Adams
@ 2017-01-11 21:29   ` Joe Riel
  2017-01-11 22:15     ` xref-find-references in elisp (Was: Re: grep-at-point) Kaushal Modi
  2017-01-11 23:42     ` grep-at-point Drew Adams
  0 siblings, 2 replies; 20+ messages in thread
From: Joe Riel @ 2017-01-11 21:29 UTC (permalink / raw)
  To: Drew Adams; +Cc: Help GNU Emacs

On Wed, 11 Jan 2017 13:01:03 -0800 (PST)
Drew Adams <drew.adams@oracle.com> wrote:

> > Before writing one, is there an elisp function
> > that returns a buffer of links to file locations
> > where the elisp symbol at point is used?
> > 
> > I'm only concerned with the files in the current directory.
> > Am currently using M-x grep.   Maybe all I really need
> > is a grep-at-point function, which greps for the symbol at point.
> 
> Doesn't `M-x grep RET M-n' give you what you want?  If point
> is on a Lisp symbol then `M-n' yanks it as the default value.

It does.  I wasn't aware that grep set a special history list.  Nice.

-- 
Joe Riel




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

* Re: grep-at-point
  2017-01-11 21:09       ` grep-at-point Kaushal Modi
@ 2017-01-11 21:32         ` Kaushal Modi
  0 siblings, 0 replies; 20+ messages in thread
From: Kaushal Modi @ 2017-01-11 21:32 UTC (permalink / raw)
  To: Eli Zaretskii, help-gnu-emacs

I just looked up semantic-symref-tool-alist. Looks like global is the first
option, and that I just need to have gtags run
in (semantic-symref-calculate-rootdir) directory.

With the GPATH file available in rootdir, I am good to go :)


On Wed, Jan 11, 2017 at 4:09 PM Kaushal Modi <kaushal.modi@gmail.com> wrote:

> On Wed, Jan 11, 2017 at 4:03 PM Eli Zaretskii <eliz@gnu.org> wrote:
>
>
> Install GNU ID-Utils, and this command will be blazingly fast.  (By
> default it uses Grep, I think.)
>
>
> Ah, I had never heard of that. But I do use something probably similar:
> GNU Global.
> https://www.gnu.org/software/global/
>
> Would you point to how to set up xref to use that?
>
> In the meanwhile, I will work on installing ID-Utils.
> --
>
> Kaushal Modi
>
-- 

Kaushal Modi


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

* Re: grep-at-point
  2017-01-11 20:23     ` grep-at-point Eli Zaretskii
  2017-01-11 21:09       ` grep-at-point Kaushal Modi
@ 2017-01-11 21:45       ` Marcin Borkowski
  1 sibling, 0 replies; 20+ messages in thread
From: Marcin Borkowski @ 2017-01-11 21:45 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: help-gnu-emacs


On 2017-01-11, at 21:23, Eli Zaretskii <eliz@gnu.org> wrote:

>> From: Kaushal Modi <kaushal.modi@gmail.com>
>> Date: Wed, 11 Jan 2017 20:20:49 +0000
>> 
>>  In Emacs 25, try "M-x xref-find-references RET".
>> 
>> That's awesome! It took a bit longer for the search to finish, but it did find everything :)
>
> Install GNU ID-Utils, and this command will be blazingly fast.  (By
> default it uses Grep, I think.)

Personally, I use projectile and the `projectile-ag` command.

Hth,

-- 
Marcin Borkowski



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

* xref-find-references in elisp (Was: Re: grep-at-point)
  2017-01-11 21:29   ` grep-at-point Joe Riel
@ 2017-01-11 22:15     ` Kaushal Modi
  2017-01-11 23:14       ` Dmitry Gutov
  2017-01-11 23:42     ` grep-at-point Drew Adams
  1 sibling, 1 reply; 20+ messages in thread
From: Kaushal Modi @ 2017-01-11 22:15 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: Help Gnu Emacs mailing list

Hi Eli,

Correct me if I am wrong, but it looks like semantic/symref is not used at
all by xref-find-references (probably in emacs-lisp-mode only?)

So regardless of availability of idutils or global, it just
uses elisp--xref-find-definitions.

So if I call xref-find-references in an emacs-lisp-mode buffer,
semantic/symref is never required and `semantic-symref-detect-symref-tool'
is never called.

>> Eli
> Install GNU ID-Utils, and this command will be blazingly fast.  (By
> default it uses Grep, I think.)
-- 

Kaushal Modi


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

* Re: xref-find-references in elisp (Was: Re: grep-at-point)
  2017-01-11 22:15     ` xref-find-references in elisp (Was: Re: grep-at-point) Kaushal Modi
@ 2017-01-11 23:14       ` Dmitry Gutov
  2017-01-11 23:24         ` Kaushal Modi
  0 siblings, 1 reply; 20+ messages in thread
From: Dmitry Gutov @ 2017-01-11 23:14 UTC (permalink / raw)
  To: Kaushal Modi, Eli Zaretskii; +Cc: Help Gnu Emacs mailing list

On 12.01.2017 01:15, Kaushal Modi wrote:

> Correct me if I am wrong, but it looks like semantic/symref is not used at
> all by xref-find-references (probably in emacs-lisp-mode only?)

The package is used. Semantic's parsers are not used, though.

> So regardless of availability of idutils or global, it just
> uses elisp--xref-find-definitions.

Not true. That function is for definitions.

> So if I call xref-find-references in an emacs-lisp-mode buffer,
> semantic/symref is never required and `semantic-symref-detect-symref-tool'
> is never called.

Both things happen over here.



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

* Re: xref-find-references in elisp (Was: Re: grep-at-point)
  2017-01-11 23:14       ` Dmitry Gutov
@ 2017-01-11 23:24         ` Kaushal Modi
  2017-01-11 23:37           ` Dmitry Gutov
  0 siblings, 1 reply; 20+ messages in thread
From: Kaushal Modi @ 2017-01-11 23:24 UTC (permalink / raw)
  To: Dmitry Gutov, Eli Zaretskii; +Cc: Help Gnu Emacs mailing list

On Wed, Jan 11, 2017 at 6:14 PM Dmitry Gutov <dgutov@yandex.ru> wrote:

> On 12.01.2017 01:15, Kaushal Modi wrote:
>
> > Correct me if I am wrong, but it looks like semantic/symref is not used
> at
> > all by xref-find-references (probably in emacs-lisp-mode only?)
>
> The package is used. Semantic's parsers are not used, though.
>

Correct. I was doing (featurep 'symref) by mistake instead of (featurep
'semantic/symref).


>
> > So regardless of availability of idutils or global, it just
> > uses elisp--xref-find-definitions.
>
> Not true. That function is for definitions.
>

Yes, I am only talking about the case when xref-find-references is used. It
doesn't use global or idutils for that. After calls to
xref-find-references, the value of semantic-symref-tool stays at 'detect.

Only after I do M-: semantic-symref-detect-symref-tool, the value of
semantic-symref-tool changes to 'global (because I have GPATH file
generated in rootdir).

So global is not used at all by xref-find-references.


> > So if I call xref-find-references in an emacs-lisp-mode buffer,
> > semantic/symref is never required and
> `semantic-symref-detect-symref-tool'
> > is never called.
>
> Both things happen over here.
>

It was my mistake earlier; semantic/symref IS required. But
semantic-symref-detect-symref-tool doesn't seem be called at all because
the semantic-symref-tool value stays at 'detect unless I call
semantic-symref-detect-symref-tool manually.

Can you confirm the above?
-- 

Kaushal Modi


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

* Re: xref-find-references in elisp (Was: Re: grep-at-point)
  2017-01-11 23:24         ` Kaushal Modi
@ 2017-01-11 23:37           ` Dmitry Gutov
  2017-01-11 23:42             ` Kaushal Modi
  0 siblings, 1 reply; 20+ messages in thread
From: Dmitry Gutov @ 2017-01-11 23:37 UTC (permalink / raw)
  To: Kaushal Modi, Eli Zaretskii; +Cc: Help Gnu Emacs mailing list

On 12.01.2017 02:24, Kaushal Modi wrote:

> After calls to
> xref-find-references, the value of semantic-symref-tool stays at 'detect.

That's because it creates a local binding for this variable before 
detecting the tool. In order not to interfere with its other uses.

> Only after I do M-: semantic-symref-detect-symref-tool, the value of
> semantic-symref-tool changes to 'global (because I have GPATH file
> generated in rootdir).
>
> So global is not used at all by xref-find-references.

Try M-x debug-on-entry, maybe.

> It was my mistake earlier; semantic/symref IS required. But
> semantic-symref-detect-symref-tool doesn't seem be called at all because
> the semantic-symref-tool value stays at 'detect unless I call
> semantic-symref-detect-symref-tool manually.
>
> Can you confirm the above?

Nope!



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

* Re: xref-find-references in elisp (Was: Re: grep-at-point)
  2017-01-11 23:37           ` Dmitry Gutov
@ 2017-01-11 23:42             ` Kaushal Modi
  0 siblings, 0 replies; 20+ messages in thread
From: Kaushal Modi @ 2017-01-11 23:42 UTC (permalink / raw)
  To: Dmitry Gutov, Eli Zaretskii; +Cc: Help Gnu Emacs mailing list

Sorry for the noise. I now understand what's happening.

On Wed, Jan 11, 2017 at 6:37 PM Dmitry Gutov <dgutov@yandex.ru> wrote:

> On 12.01.2017 02:24, Kaushal Modi wrote:
>
> > After calls to
> > xref-find-references, the value of semantic-symref-tool stays at 'detect.
>
> That's because it creates a local binding for this variable before
> detecting the tool. In order not to interfere with its other uses.
>

Yup, thanks!


> > Only after I do M-: semantic-symref-detect-symref-tool, the value of
> > semantic-symref-tool changes to 'global (because I have GPATH file
> > generated in rootdir).
> >
> > So global is not used at all by xref-find-references.
>
> Try M-x debug-on-entry, maybe.
>

Got it. I edebugged that function and saw it execute.


> > It was my mistake earlier; semantic/symref IS required. But
> > semantic-symref-detect-symref-tool doesn't seem be called at all because
> > the semantic-symref-tool value stays at 'detect unless I call
> > semantic-symref-detect-symref-tool manually.
> >
> > Can you confirm the above?
>
> Nope!
>

Understood. Thanks.
-- 

Kaushal Modi


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

* RE: grep-at-point
  2017-01-11 21:29   ` grep-at-point Joe Riel
  2017-01-11 22:15     ` xref-find-references in elisp (Was: Re: grep-at-point) Kaushal Modi
@ 2017-01-11 23:42     ` Drew Adams
  1 sibling, 0 replies; 20+ messages in thread
From: Drew Adams @ 2017-01-11 23:42 UTC (permalink / raw)
  To: Joe Riel; +Cc: Help GNU Emacs

> > Doesn't `M-x grep RET M-n' give you what you want?  If point
> > is on a Lisp symbol then `M-n' yanks it as the default value.
> 
> It does.  I wasn't aware that grep set a special history list.
> Nice.

It's not a history list.  `M-n' for minibuffer input (with or
without completion) yanks a default value provided by the
command (e.g. `grep') - or several default values, one by one,
if repeated.

It is only if you use `M-n' after you have used `M-p' (which
goes backward in the history list) that `M-n' goes forward
in the history list (and then into the defaults list, when
the history is exhausted in the forward direction).

Think of the list of default values as being prepended to the
history list, and of the starting position being the "origin"
point between the two lists.  If you use `M-p' from the origin
you go backward, into the history.  If you use `M-n' you go
forward, into the list of defaults.



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

end of thread, other threads:[~2017-01-11 23:42 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-11 17:48 grep-at-point Joe Riel
2017-01-11 19:21 ` grep-at-point Aleksandar Simic
2017-01-11 19:55   ` grep-at-point Kaushal Modi
2017-01-11 19:42 ` grep-at-point Eli Zaretskii
2017-01-11 20:20   ` grep-at-point Kaushal Modi
2017-01-11 20:23     ` grep-at-point Eli Zaretskii
2017-01-11 21:09       ` grep-at-point Kaushal Modi
2017-01-11 21:32         ` grep-at-point Kaushal Modi
2017-01-11 21:45       ` grep-at-point Marcin Borkowski
2017-01-11 19:56 ` grep-at-point Eric Abrahamsen
2017-01-11 20:15 ` grep-at-point John Mastro
2017-01-11 20:46 ` grep-at-point Thien-Thi Nguyen
2017-01-11 21:01 ` grep-at-point Drew Adams
2017-01-11 21:29   ` grep-at-point Joe Riel
2017-01-11 22:15     ` xref-find-references in elisp (Was: Re: grep-at-point) Kaushal Modi
2017-01-11 23:14       ` Dmitry Gutov
2017-01-11 23:24         ` Kaushal Modi
2017-01-11 23:37           ` Dmitry Gutov
2017-01-11 23:42             ` Kaushal Modi
2017-01-11 23:42     ` grep-at-point Drew Adams

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).