Change keybinding for backtrace-collapse from '=' to '-'
'+' and '-' make a more intuitive pair of keybindings for backtrace-pretty-print and backtrace-collapse than '+' and '='. * lisp/emacs-lisp/backtrace.el (backtrace-mode-map): * doc/lispref/debugging.texi (Backtraces): Change keybinding for backtrace-collapse.
This commit is contained in:
parent
04cc0b6158
commit
2ede75c49b
2 changed files with 2 additions and 2 deletions
|
@ -451,7 +451,7 @@ Move to the beginning of the next frame.
|
|||
Add line breaks and indentation to the top-level Lisp form at point to
|
||||
make it more readable.
|
||||
|
||||
@item =
|
||||
@item -
|
||||
Collapse the top-level Lisp form at point back to a single line.
|
||||
|
||||
@item #
|
||||
|
|
|
@ -186,7 +186,7 @@ This is commonly used to recompute `backtrace-frames'.")
|
|||
(define-key map "#" 'backtrace-toggle-print-circle)
|
||||
(define-key map "\C-m" 'backtrace-help-follow-symbol)
|
||||
(define-key map "+" 'backtrace-pretty-print)
|
||||
(define-key map "=" 'backtrace-collapse)
|
||||
(define-key map "-" 'backtrace-collapse)
|
||||
(define-key map [follow-link] 'mouse-face)
|
||||
(define-key map [mouse-2] 'mouse-select-window)
|
||||
map)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue