How can I jump to function when doing C development in Emacs? -


i doing c development in emacs. if have source file open multiple functions , "the marker" @ function call e.g. int n = get_number(arg); there way can "jump to" implementation of function? e.g. int get_number(int *arg) { ... }

i have done java development in eclipse , missing functionallity, because i'm not used emacs learn.

you have create tag file.
under unix, have etags program understands syntax of c, c++, java... , create tag file can used emacs.

this rather old page (2004) provides more information.

to jump function use m-. (that’s meta-period) , type name of function. if press enter emacs jump function declaration matches word under cursor.


Comments

Popular posts from this blog

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -