Compare commits

...

2 Commits

Author SHA1 Message Date
Case Duckworth dc88071462 Actually, you know, /provide/ the feature 2021-09-06 22:42:49 -05:00
Case Duckworth 748f899a98 Update README with install information 2021-09-06 22:42:41 -05:00
2 changed files with 17 additions and 0 deletions

View File

@ -81,6 +81,21 @@ And here it is using this macro:
Much easier, in this author's humble opinion.
## Install
This package is not currently on MELPA or anywhere, so either `git clone` this
repo and add it to your `load-path` and `require` it, or use some other
installation method.
I use `straight.el`:
```lisp
(straight-get-package
'(define-repeat-map
:host nil
:repo "https://tildegit.org/acdw/define-repeat-map.el"))
```
## Similar packages
I've found one other package that tries to simplify repeat-map definition, but

View File

@ -124,4 +124,6 @@
`(with-eval-after-load 'repeat
,@(nreverse result))))
(provide 'define-repeat-map)
;;; define-repeat-map.el ends here