Move easy-kill to Editing section

This commit is contained in:
contrapunctus 2022-01-14 12:25:59 +05:30
parent 62689ca339
commit 8e83db5b58
1 changed files with 8 additions and 8 deletions

View File

@ -554,6 +554,14 @@ as links into an Org or Markdown document."
"C-t C-p" 'transpose-paragraphs)
#+END_SRC
** easy-kill :disabled:
#+BEGIN_SRC emacs-lisp
(use-package easy-kill
:disabled
:bind (("M-w" . easy-kill)
("M-d" . easy-kill-delete-region)))
#+END_SRC
* modal editing
** active boon config
#+BEGIN_SRC emacs-lisp
@ -2224,14 +2232,6 @@ PR ideas
;; ;; M-d is useful in the minibuffer
;; (define-key emacs-lisp-mode-map (kbd "M-d") nil)
;; (global-set-key (kbd "M-d") 'easy-kill-delete-region)
#+END_SRC
* easy-kill :disabled:editing:
#+BEGIN_SRC emacs-lisp
(use-package easy-kill
:disabled
:bind (("M-w" . easy-kill)
("M-d" . easy-kill-delete-region)))
#+END_SRC
* TODO hydra [0%]
I started off using Hydra for programming modes, when I noticed that Elisp, Common Lisp, and Scheme all had some semantically-analogous operations with different names, which could be abstracted away behind a generic interface. Then, around the time I got into using Org for literate programs, I added an Org hydra, and then a general hydra for frequently-used operations.