Variable: ffap-bindings

ffap-bindings is a variable defined in ffap.el.gz.

Value

Large value
((global-set-key
  [S-mouse-3]
  'ffap-at-mouse)
 (global-set-key
  [C-S-mouse-3]
  'ffap-menu)
 (global-set-key
  [remap find-file]
  'find-file-at-point)
 (global-set-key
  [remap find-file-read-only]
  'ffap-read-only)
 (global-set-key
  [remap find-alternate-file]
  'ffap-alternate-file)
 (global-set-key
  [remap find-file-other-window]
  'ffap-other-window)
 (global-set-key
  [remap find-file-other-frame]
  'ffap-other-frame)
 (global-set-key
  [remap find-file-other-tab]
  'ffap-other-tab)
 (global-set-key
  [remap find-file-read-only-other-window]
  'ffap-read-only-other-window)
 (global-set-key
  [remap find-file-read-only-other-frame]
  'ffap-read-only-other-frame)
 (global-set-key
  [remap dired]
  'dired-at-point)
 (global-set-key
  [remap dired-other-window]
  'ffap-dired-other-window)
 (global-set-key
  [remap dired-other-frame]
  'ffap-dired-other-frame)
 (global-set-key
  [remap list-directory]
  'ffap-list-directory)
 (add-hook 'gnus-summary-mode-hook 'ffap-gnus-hook)
 (add-hook 'gnus-article-mode-hook 'ffap-gnus-hook)
 (add-hook 'vm-mode-hook 'ffap-ro-mode-hook)
 (add-hook 'rmail-mode-hook 'ffap-ro-mode-hook))

Documentation

List of binding forms evaluated by function ffap-bindings(var)/ffap-bindings(fun).

A reasonable ffap installation needs just this one line:
  (ffap-bindings)
Of course if you do not like these bindings, just roll your own!

Probably introduced at or before Emacs version 23.2.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ffap.el.gz
;;; Offer default global bindings (`ffap-bindings'):

(defvar ffap-bindings
   '((global-set-key [S-mouse-3] 'ffap-at-mouse)
     (global-set-key [C-S-mouse-3] 'ffap-menu)

     (global-set-key [remap find-file] 'find-file-at-point)
     (global-set-key [remap find-file-read-only] 'ffap-read-only)
     (global-set-key [remap find-alternate-file] 'ffap-alternate-file)

     (global-set-key [remap find-file-other-window] 'ffap-other-window)
     (global-set-key [remap find-file-other-frame] 'ffap-other-frame)
     (global-set-key [remap find-file-other-tab] 'ffap-other-tab)
     (global-set-key [remap find-file-read-only-other-window] 'ffap-read-only-other-window)
     (global-set-key [remap find-file-read-only-other-frame] 'ffap-read-only-other-frame)

     (global-set-key [remap dired] 'dired-at-point)
     (global-set-key [remap dired-other-window] 'ffap-dired-other-window)
     (global-set-key [remap dired-other-frame] 'ffap-dired-other-frame)
     (global-set-key [remap list-directory] 'ffap-list-directory)

     (add-hook 'gnus-summary-mode-hook 'ffap-gnus-hook)
     (add-hook 'gnus-article-mode-hook 'ffap-gnus-hook)
     (add-hook 'vm-mode-hook 'ffap-ro-mode-hook)
     (add-hook 'rmail-mode-hook 'ffap-ro-mode-hook))
     "List of binding forms evaluated by function `ffap-bindings'.
A reasonable ffap installation needs just this one line:
  (ffap-bindings)
Of course if you do not like these bindings, just roll your own!")