emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] [RFC] Proposal for rebindings in Org 8.3


From: Sebastien Vauban
Subject: Re: [O] [RFC] Proposal for rebindings in Org 8.3
Date: Mon, 10 Feb 2014 12:18:28 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (windows-nt)

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]