branch: elpa/anzu
commit f570e01b4ce1e06fdb9cd04a874fb9b514b9c2b6
Merge: 4cc1b6c9e0 de70e2fa4a
Author: Syohei YOSHIDA <[email protected]>
Commit: Syohei YOSHIDA <[email protected]>
Merge pull request #8 from bbatsov/doc-improvement
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 2b6964d3ba..b1c7888c04 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: