Variable: pc-select-extra-key-bindings
pc-select-extra-key-bindings is a variable defined in pc-select.el.gz.
Value
(([f16]
. copy-region-as-kill)
([f18]
. yank)
([f20]
. kill-region)
([f6]
. other-window)
([C-delete]
. kill-line)
("\377" . undo)
([C-M-delete]
. kill-sexp)
([C-escape]
. electric-buffer-list))
Documentation
Key bindings to set only if pc-select-selection-keys-only is nil.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/pc-select.el.gz
(defvar pc-select-extra-key-bindings
;; The following keybindings are for standard ISO keyboards
;; as they are used with IBM compatible PCs, IBM RS/6000,
;; MACs, many X-Stations and probably more.
'(;; Commented out since it's been standard at least since Emacs-21.
;;([S-insert] . yank)
;;([C-insert] . copy-region-as-kill)
;;([S-delete] . kill-region)
;; The following bindings are useful on Sun Type 3 keyboards
;; They implement the Get-Delete-Put (copy-cut-paste)
;; functions from sunview on the L6, L8 and L10 keys
;; Sam Steingold <sds@gnu.org> says that f16 is copy and f18 is paste.
([f16] . copy-region-as-kill)
([f18] . yank)
([f20] . kill-region)
;; The following bindings are from Pete Forman.
([f6] . other-window) ; KNextPane F6
([C-delete] . kill-line) ; KEraseEndLine cDel
("\M-\d" . undo) ; KUndo aBS
;; The following binding is taken from pc-mode.el
;; as suggested by RMS.
;; I only used the one that is not covered above.
([C-M-delete] . kill-sexp)
;; Next line proposed by Eli Barzilay
([C-escape] . electric-buffer-list))
"Key bindings to set only if `pc-select-selection-keys-only' is nil.")