mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Add miniedit plugin
This commit is contained in:
1
Cask
1
Cask
@ -63,6 +63,7 @@
|
|||||||
(depends-on "expand-region")
|
(depends-on "expand-region")
|
||||||
(depends-on "fancy-narrow")
|
(depends-on "fancy-narrow")
|
||||||
(depends-on "goto-last-change")
|
(depends-on "goto-last-change")
|
||||||
|
(depends-on "miniedit")
|
||||||
(depends-on "rotate-text" :git "https://github.com/debug-ito/rotate-text.el")
|
(depends-on "rotate-text" :git "https://github.com/debug-ito/rotate-text.el")
|
||||||
(depends-on "smart-forward")
|
(depends-on "smart-forward")
|
||||||
(depends-on "smartparens")
|
(depends-on "smartparens")
|
||||||
|
@ -194,6 +194,15 @@ enable multiple minor modes for the same regexp.")
|
|||||||
|
|
||||||
(use-package goto-last-change :commands goto-last-change)
|
(use-package goto-last-change :commands goto-last-change)
|
||||||
|
|
||||||
|
(use-package miniedit
|
||||||
|
:commands minibuffer-edit
|
||||||
|
:init
|
||||||
|
(map! :map (minibuffer-local-map
|
||||||
|
minibuffer-local-ns-map
|
||||||
|
minibuffer-local-completion-map
|
||||||
|
minibuffer-local-must-match-map)
|
||||||
|
"\M-\C-e" 'miniedit))
|
||||||
|
|
||||||
(use-package help-fns+ ; Improved help commands
|
(use-package help-fns+ ; Improved help commands
|
||||||
:commands (describe-buffer describe-command describe-file
|
:commands (describe-buffer describe-command describe-file
|
||||||
describe-keymap describe-option describe-option-of-type))
|
describe-keymap describe-option describe-option-of-type))
|
||||||
|
Reference in New Issue
Block a user