Emacs: how to jump to function definition in .el file?

后端 未结 4 1907
星月不相逢
星月不相逢 2020-12-13 08:36

I tried to edit my init file. Is there any possible way to quickly jump into function definition of other .el file that has already loaded/required ?

I remember doin

4条回答
  •  南方客
    南方客 (楼主)
    2020-12-13 08:54

    M-x find-function RET (function name) RET

    I find that C-h C-f makes a good keybinding for find-function (given that C-h f is bound by default to describe-function)

    (global-set-key (kbd "C-h C-f") 'find-function)

提交回复
热议问题