Add miniedit plugin
This commit is contained in:
parent
f17082a657
commit
9ffa72b3a5
2 changed files with 10 additions and 0 deletions
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))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue