mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Fix #791: replace global-command-log-mode
global-command-log-mode isn't autoloaded, but clm/toggle-command-log-buffer is, and if command-log-mode-is-global is set, it is equivalent to global-command-log-mode.
This commit is contained in:
@ -254,7 +254,9 @@ savehist file."
|
|||||||
|
|
||||||
;; `command-log-mode'
|
;; `command-log-mode'
|
||||||
(setq command-log-mode-auto-show t
|
(setq command-log-mode-auto-show t
|
||||||
command-log-mode-open-log-turns-on-mode t)
|
command-log-mode-open-log-turns-on-mode t
|
||||||
|
command-log-mode-is-global t)
|
||||||
|
|
||||||
|
|
||||||
(def-package! expand-region
|
(def-package! expand-region
|
||||||
:commands (er/contract-region er/mark-symbol er/mark-word)
|
:commands (er/contract-region er/mark-symbol er/mark-word)
|
||||||
|
@ -635,7 +635,7 @@
|
|||||||
:desc "Describe key" :n "k" #'describe-key
|
:desc "Describe key" :n "k" #'describe-key
|
||||||
:desc "Find documentation" :n "K" #'+lookup/documentation
|
:desc "Find documentation" :n "K" #'+lookup/documentation
|
||||||
:desc "Find library" :n "l" #'find-library
|
:desc "Find library" :n "l" #'find-library
|
||||||
:desc "Command log" :n "L" #'global-command-log-mode
|
:desc "Command log" :n "L" #'clm/toggle-command-log-buffer
|
||||||
:desc "View *Messages*" :n "m" #'view-echo-area-messages
|
:desc "View *Messages*" :n "m" #'view-echo-area-messages
|
||||||
:desc "Describe mode" :n "M" #'describe-mode
|
:desc "Describe mode" :n "M" #'describe-mode
|
||||||
:desc "Toggle profiler" :n "p" #'doom/toggle-profiler
|
:desc "Toggle profiler" :n "p" #'doom/toggle-profiler
|
||||||
|
Reference in New Issue
Block a user