diff options
author | Thanos Apollo <[email protected]> | 2023-12-16 01:07:36 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-12-16 01:07:36 +0200 |
commit | ccb8f0546265bd201e9c3755c077a19dab731b3a (patch) | |
tree | 43de4e7e0c16ec78f56bcb3d9472b29a8c5ae261 | |
parent | c8343bc086c83e7962eb391700bab33bb69c013f (diff) |
emacs:(commands) Redo thanos/create-map
-rw-r--r-- | .emacs.d/modules/thanos-commands.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.emacs.d/modules/thanos-commands.el b/.emacs.d/modules/thanos-commands.el index 82c6862..86814ed 100644 --- a/.emacs.d/modules/thanos-commands.el +++ b/.emacs.d/modules/thanos-commands.el @@ -83,8 +83,6 @@ ;; CREATE -(define-prefix-command 'Create) - (defun create-text-scratch () "Create a scratch buffer." (interactive) @@ -97,7 +95,7 @@ (switch-to-buffer (get-buffer-create "*scratch*")) (emacs-lisp-mode)) -(defvar-keymap thanos/create +(defvar-keymap thanos/create-map :doc "Create custom buffers" "t" #'create-text-scratch "e" #'create-scratch) @@ -138,7 +136,7 @@ "i" #'erc-libera "t" #'thanos/load-theme "w" #'thanos/wallpaper-select - "C-c" 'thanos/create + "C-c" thanos/create-map "C-e" #'emms-pause) (define-key global-map (kbd "C-c a") thanos/applications-map) |