Bastien, Bastien wrote: > "Sebastien Vauban" writes: >> Bastien wrote: >>> (This one I knew. My own recent discovery was C-h : to directly jump >>> to the definition of a symbol. Pretty useful.) >> >> ╭──── >> │ C-h : is undefined >> ╰──── >> >> on my side. To what is it bound on your side? > > find-function > > C-h : runs the command find-function, which is an interactive > autoloaded compiled Lisp function in `find-func.el'. > > It is bound to C-h :, <help> :. > > (find-function FUNCTION) > > Find the definition of the FUNCTION near point. > > Finds the source file containing the definition of the function > near point (selected by `function-called-at-point') in a buffer and > places point before the definition. > Set mark before moving, if the buffer already existed.
Weird. I don't even see the binding in `find-func.el' (in Emacs trunk from last week): ╭──── │ ;;; find-func.el --- find the definition of the Emacs Lisp function near point │ │ ;; Copyright (C) 1997, 1999, 2001-2014 Free Software Foundation, Inc. │ │ ... │ │ ;;;###autoload │ (defun find-function-setup-keys () │ "Define some key bindings for the find-function family of functions." │ (define-key ctl-x-map "F" 'find-function) │ (define-key ctl-x-4-map "F" 'find-function-other-window) │ (define-key ctl-x-5-map "F" 'find-function-other-frame) │ (define-key ctl-x-map "K" 'find-function-on-key) │ (define-key ctl-x-map "V" 'find-variable) │ (define-key ctl-x-4-map "V" 'find-variable-other-window) │ (define-key ctl-x-5-map "V" 'find-variable-other-frame)) │ │ (provide 'find-func) ╰──── Best regards, Seb -- Sebastien Vauban