Adding lambda functions as an option for start-mode keybindings.

This commit is contained in:
Derek Taylor 2023-01-10 00:01:30 -06:00
parent 483b222c3c
commit 3075f2bc7d
2 changed files with 20 additions and 10 deletions

View File

@ -801,11 +801,16 @@
:keymap (let ((map (make-sparse-keymap)))
;;(define-key map (kbd "M-z") 'eshell)
(evil-define-key 'normal start-mode-map
(kbd "1") 'dt/open-config-org
(kbd "2") 'dt/open-init-el
(kbd "3") 'dt/open-packages-el
(kbd "4") 'dt/open-eshell-aliases
(kbd "5") 'dt/open-eshell-profile)
(kbd "1") '(lambda () (interactive) (find-file "~/.config/doom/config.org"))
(kbd "2") '(lambda () (interactive) (find-file "~/.config/doom/init.el"))
(kbd "3") '(lambda () (interactive) (find-file "~/.config/doom/packages.el"))
(kbd "4") '(lambda () (interactive) (find-file "~/.config/doom/eshell/aliases"))
(kbd "5") '(lambda () (interactive) (find-file "~/.config/doom/eshell/profile")))
;; (kbd "1") 'dt/open-config-org
;; (kbd "2") 'dt/open-init-el
;; (kbd "3") 'dt/open-packages-el
;; (kbd "4") 'dt/open-eshell-aliases
;; (kbd "5") 'dt/open-eshell-profile)
map))
(provide 'start-mode)

View File

@ -1292,11 +1292,16 @@ Instead of using Doom's Dashboard or the Emacs Dashboard program, I have decided
:keymap (let ((map (make-sparse-keymap)))
;;(define-key map (kbd "M-z") 'eshell)
(evil-define-key 'normal start-mode-map
(kbd "1") 'dt/open-config-org
(kbd "2") 'dt/open-init-el
(kbd "3") 'dt/open-packages-el
(kbd "4") 'dt/open-eshell-aliases
(kbd "5") 'dt/open-eshell-profile)
(kbd "1") '(lambda () (interactive) (find-file "~/.config/doom/config.org"))
(kbd "2") '(lambda () (interactive) (find-file "~/.config/doom/init.el"))
(kbd "3") '(lambda () (interactive) (find-file "~/.config/doom/packages.el"))
(kbd "4") '(lambda () (interactive) (find-file "~/.config/doom/eshell/aliases"))
(kbd "5") '(lambda () (interactive) (find-file "~/.config/doom/eshell/profile")))
;; (kbd "1") 'dt/open-config-org
;; (kbd "2") 'dt/open-init-el
;; (kbd "3") 'dt/open-packages-el
;; (kbd "4") 'dt/open-eshell-aliases
;; (kbd "5") 'dt/open-eshell-profile)
map))
(provide 'start-mode)