branch: elpa/evil-goggles
commit 2d2011180f6e42b4deaac639ab5375fb2e0f14d6
Author: Evgeni Kolev <[email protected]>
Commit: Evgeni Kolev <[email protected]>
Mention experimental pulse option in README
---
README.md | 6 ++++++
evil-goggles.el | 4 +++-
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 2d66306df7..7b1242526c 100644
--- a/README.md
+++ b/README.md
@@ -83,6 +83,12 @@ By default, all goggles' faces inherit
`evil-goggles-default-face`, which in tur
;; run `M-x list-faces-display` in a fresh emacs to get a list of faces on
your emacs
```
+- To pulse the visual hint, rather than just show and hide it (experimental):
+
+``` emacs-lisp
+(setq evil-goggles-pulse t)
+```
+
- To use different faces per edit action:
```emacs-lisp
(custom-set-faces
diff --git a/evil-goggles.el b/evil-goggles.el
index 9941ba0546..57600b0800 100644
--- a/evil-goggles.el
+++ b/evil-goggles.el
@@ -45,7 +45,9 @@
:group 'evil-goggles)
(defcustom evil-goggles-pulse nil
- "If t, the overlay hint will pulse rather than appear and disapper."
+ "If t, the overlay hint will pulse rather than appear and disapper.
+
+This option is experimental."
:type 'boolean
:group 'evil-goggles)