In Emacs, how to return to the previous line position after using the semantic transition to a character?

I know how to go about defining a variable in Emacs using semantic-mode . It works well in one file (I think it does not work if the definition is in another file). Using Cc , j , I can go on to the definition of a variable, but how do I go back to the previous line? I am currently using display Symref Cc , g and select the displayed symref.

Is there a direct method?

+54
emacs
Feb 07 2018-11-11T00
source share
1 answer

Using:

Cu C-space or Cu C- @

If you want to move between buffers, you can use:

Cx C-space or Cx C- @

This causes Emacs to go over to the mark (and set the mark from the position slid out of the local ring of marks), which is usually set by the previous jump command.

+97
07 Feb 2018-11-11T00:
source share



All Articles