1

Add keybinding to delete pair under cursor

This commit is contained in:
Jessie Hildebrandt 2022-02-02 00:04:55 -05:00
parent 41c56625e5
commit 303db04162

View File

@ -271,6 +271,7 @@
;; [ F7 ] -> Toggle linum-mode/display-line-numbers-mode
;; [ F10 ] -> (Overwritten) Open the menubar in a minibuffer
;; [ C-z ] -> (Overwritten) Undo (and don't suspend, thanks)
;; [ C-c d ] -> Delete pair
;; [ C-c o ] -> Focus on minibuffer window
;; [ C-c r ] -> Revert buffer without confirmation
;; [ C-c s ] -> Open scratch buffer in the current window
@ -320,6 +321,7 @@
([f7] . display-line-numbers-mode)
([f10] . tmm-menubar)
("C-z" . undo)
("C-c d" . delete-pair)
("C-c o" . switch-to-minibuffer-window)
("C-c r" . revert-buffer-no-confirm)
("C-c s" . open-scratch-buffer)