branch: elpa/anzu
commit de70e2fa4ac07521c26a8e7365fd533a2bc0500e
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>
Enable mode unconditionally in examples
---
README.md | 6 +++---
anzu.el | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
index 04da844e7d..f9d7821d74 100644
--- a/README.md
+++ b/README.md
@@ -33,7 +33,7 @@ You can install `anzu.el` from
[MELPA](http://melpa.milkbox.net/) with `package.
Enable anzu minor mode:
```lisp
-(anzu-mode)
+(anzu-mode +1)
```
#### `global-anzu-mode`
@@ -41,7 +41,7 @@ Enable anzu minor mode:
Enable global anzu mode:
```lisp
-(global-anzu-mode)
+(global-anzu-mode +1)
```
## Customization
@@ -100,7 +100,7 @@ The default value is `'(isearch-forward-regexp
isearch-backward-regexp)`.
```lisp
(require 'anzu)
-(global-anzu-mode t)
+(global-anzu-mode +1)
(set-face-attribute 'anzu-mode-line nil
:foreground "yellow" :weight 'bold)
diff --git a/anzu.el b/anzu.el
index b768f09ed5..89feef11c6 100644
--- a/anzu.el
+++ b/anzu.el
@@ -30,7 +30,7 @@
;; To use this package, add following code to your init.el or .emacs
;; (require 'anzu)
-;; (global-anzu-mode t)
+;; (global-anzu-mode +1)
;;
;;; Code: