1
0
Fork 0

fix(emacs): make : key equivalent to M-x

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2024-10-07 22:54:35 -04:00
parent aa7664bbcd
commit b0a4fe3da3
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47

View file

@ -55,6 +55,11 @@
(url-copy-file url filepath 1))) (url-copy-file url filepath 1)))
;; meow ;; meow
(defun meow-mx (arg)
"Press alt + x."
(interactive "P")
(execute-extended-command arg))
(defun meow-mq () (defun meow-mq ()
"Reformat/reindent." "Reformat/reindent."
(interactive) (interactive)
@ -154,6 +159,7 @@
'("Y" . meow-yank-above) '("Y" . meow-yank-above)
'("z" . meow-pop-selection) '("z" . meow-pop-selection)
'("'" . repeat) '("'" . repeat)
'(":" . meow-mx)
'("<escape>" . ignore))) '("<escape>" . ignore)))
(meow-setup) (meow-setup)