emacs-devel
[Top][All Lists]
Advanced

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

Please add S-tab to button-buffer-map


From: Lennart Borgman (gmail)
Subject: Please add S-tab to button-buffer-map
Date: Wed, 19 Mar 2008 20:44:24 +0100
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.9) Gecko/20071031 Thunderbird/2.0.0.9 Mnenhy/0.7.5.666

Didn't we decide to add S-tab to button-buffer-map? Could someone please add this (the binding is the same used in Info-mode-map):

(defvar button-buffer-map
  (let ((map (make-sparse-keymap)))
    (define-key map [?\t] 'forward-button)
    (define-key map [(shift tab)] 'backward-button)
    (define-key map "\e\t" 'backward-button)
    (define-key map [backtab] 'backward-button)
    map)
  "Keymap useful for buffers containing buttons.
Mode-specific keymaps may want to use this as their parent keymap.")




reply via email to

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