* info needed
@ 2009-05-16 17:21 Anand Dhanakshirur
0 siblings, 0 replies; 5+ messages in thread
From: Anand Dhanakshirur @ 2009-05-16 17:21 UTC (permalink / raw)
To: gnu-emacs-help
Hi,
How to go back to the position of the cursor from where semantic-ia-fast-jump is called.
Basically i want to go back to my position in code after seeing the definition of a tag.
what is the command?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: info needed
[not found] <mailman.7292.1242524122.31690.help-gnu-emacs@gnu.org>
@ 2009-05-18 3:52 ` B. T. Raven
0 siblings, 0 replies; 5+ messages in thread
From: B. T. Raven @ 2009-05-18 3:52 UTC (permalink / raw)
To: help-gnu-emacs
Anand Dhanakshirur wrote:
> Hi,
> How to go back to the position of the cursor from where semantic-ia-fast-jump is called.
>
> Basically i want to go back to my position in code after seeing the definition of a tag.
> what is the command?
This:
"
One of the most useful commands for navigation in source code is the
semantic-ia-fast-jump command, that allows to jump to declaration of
variable or function, whose name is under point. You can return back by
using the semantic-mrub-switch-tag command (C-x B), that is available
when you use the semantic-mru-bookmark-mode minor mode.
"
is here:
http://xtalk.msk.su/~ott/en/writings/emacs-devenv/EmacsCedet.html
^ permalink raw reply [flat|nested] 5+ messages in thread
* info needed
@ 2009-05-18 5:28 Anand Dhanakshirur
2009-05-18 11:54 ` Sebastien LE MAGUER
0 siblings, 1 reply; 5+ messages in thread
From: Anand Dhanakshirur @ 2009-05-18 5:28 UTC (permalink / raw)
To: emacs help
[-- Attachment #1: Type: text/plain, Size: 207 bytes --]
Hi,
How to go back to the position of the cursor from where
semantic-ia-fast-jump is called.
Basically i want to go back to my position in code after seeing the
definition of a tag.
what is the command?
[-- Attachment #2: asd.vcf --]
[-- Type: text/x-vcard, Size: 177 bytes --]
begin:vcard
fn:Anand Dhanakshirur
n:Dhanakshirur;Anand
email;internet:asd@cdotb.ernet.in
tel;work:(080)-25119295
tel;cell:9886178750
x-mozilla-html:FALSE
version:2.1
end:vcard
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: info needed
2009-05-18 5:28 Anand Dhanakshirur
@ 2009-05-18 11:54 ` Sebastien LE MAGUER
2009-05-18 13:58 ` Sebastien LE MAGUER
0 siblings, 1 reply; 5+ messages in thread
From: Sebastien LE MAGUER @ 2009-05-18 11:54 UTC (permalink / raw)
To: asd; +Cc: emacs help
[-- Attachment #1: Type: text/plain, Size: 407 bytes --]
Hi,
I propose something like-that :
(let ((old-point (point))) ;; Save of the current point
;; what you need to do
(goto-char old-point))
Anand Dhanakshirur a écrit :
> Hi,
> How to go back to the position of the cursor from where
> semantic-ia-fast-jump is called.
>
> Basically i want to go back to my position in code after seeing the
> definition of a tag.
> what is the command?
>
[-- Attachment #2: Sebastien_Le_maguer.vcf --]
[-- Type: text/x-vcard, Size: 364 bytes --]
begin:vcard
fn;quoted-printable:S=C3=A9bastien Le Maguer
n;quoted-printable:Le Maguer;S=C3=A9bastien
org:;Equipe CORDIAL
adr:ENSSAT - 6 rue de Kerampont, BP 80518 ;;Bureau 203-I;Lannion Cedex;;22305 ;France
email;internet:Sebastien.Le_Maguer@irisa.fr
title:Doctorant
tel;work:02 96 46 91 29
url:http://www.irisa.fr/cordial/Members/slemague/
version:2.1
end:vcard
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: info needed
2009-05-18 11:54 ` Sebastien LE MAGUER
@ 2009-05-18 13:58 ` Sebastien LE MAGUER
0 siblings, 0 replies; 5+ messages in thread
From: Sebastien LE MAGUER @ 2009-05-18 13:58 UTC (permalink / raw)
To: asd; +Cc: emacs help
[-- Attachment #1: Type: text/plain, Size: 516 bytes --]
I realize that it was a stupid answer please forget it
Sebastien LE MAGUER a écrit :
> Hi,
>
> I propose something like-that :
>
> (let ((old-point (point))) ;; Save of the current point
> ;; what you need to do
> (goto-char old-point))
>
> Anand Dhanakshirur a écrit :
>> Hi,
>> How to go back to the position of the cursor from where
>> semantic-ia-fast-jump is called.
>>
>> Basically i want to go back to my position in code after seeing the
>> definition of a tag.
>> what is the command?
>>
>
[-- Attachment #2: Sebastien_Le_maguer.vcf --]
[-- Type: text/x-vcard, Size: 364 bytes --]
begin:vcard
fn;quoted-printable:S=C3=A9bastien Le Maguer
n;quoted-printable:Le Maguer;S=C3=A9bastien
org:;Equipe CORDIAL
adr:ENSSAT - 6 rue de Kerampont, BP 80518 ;;Bureau 203-I;Lannion Cedex;;22305 ;France
email;internet:Sebastien.Le_Maguer@irisa.fr
title:Doctorant
tel;work:02 96 46 91 29
url:http://www.irisa.fr/cordial/Members/slemague/
version:2.1
end:vcard
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-05-18 13:58 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-16 17:21 info needed Anand Dhanakshirur
[not found] <mailman.7292.1242524122.31690.help-gnu-emacs@gnu.org>
2009-05-18 3:52 ` B. T. Raven
-- strict thread matches above, loose matches on Subject: below --
2009-05-18 5:28 Anand Dhanakshirur
2009-05-18 11:54 ` Sebastien LE MAGUER
2009-05-18 13:58 ` Sebastien LE MAGUER
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).