branch: externals/shell-command+ commit 8a88742105fa9ab67a5d33299f267efd65b901bc Author: Philip Kaludercic <phil...@posteo.net> Commit: Philip Kaludercic <phil...@posteo.net>
Use :bind-into instead of :with-feature+:bind in README --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index cc9ce445fa..353833f83a 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,7 @@ Using [`setup`][setup] I configure `shell-command+` as so: ~~~elisp (setup (:package shell-command+) (:option shell-command+-prompt "$ ") - (:with-feature dired - (:bind "M-!" shell-command+)) + (:bind-into dired "M-!" shell-command+) (:global "M-!" shell-command+)) ~~~