1

Add keybind to print major mode of current buffer

This commit is contained in:
Jessie Hildebrandt 2023-03-16 11:33:16 -04:00
parent 58e8ee73cc
commit f52fd7e102

View File

@ -375,6 +375,7 @@ DOCSTRING is an optional form that is discarded upon expansion."
("C-c \\" . user/indent-buffer) ("C-c \\" . user/indent-buffer)
("C-c o" . user/select-minibuffer-window) ("C-c o" . user/select-minibuffer-window)
("C-c s" . user/scratch-buffer) ("C-c s" . user/scratch-buffer)
("C-c m" . (lambda () (interactive) (message "%s is in %s" (buffer-name) major-mode)))
;; Navigation ;; Navigation
("M-n" . scroll-up-line) ("M-n" . scroll-up-line)