[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/evil-matchit 1e9be7dfd5 3/4: fixed typo in README
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/evil-matchit 1e9be7dfd5 3/4: fixed typo in README |
Date: |
Thu, 5 Dec 2024 03:59:32 -0500 (EST) |
branch: elpa/evil-matchit
commit 1e9be7dfd58c16305bf0ddd52c37c33016216b60
Author: Chen Bin <chenbin.sh@gmail.com>
Commit: Chen Bin <chenbin.sh@gmail.com>
fixed typo in README
---
README.org | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.org b/README.org
index 2bceabc04d..bd5e82daaa 100644
--- a/README.org
+++ b/README.org
@@ -263,7 +263,7 @@ Use =evilmi-add-one-plugin-rule= to add one new plugin rule
for specific MAJOR-M
For example, to integrate =rjsx-jump-tag= into this package is as simple as,
#+begin_src elisp
-(evilmi-add-one-plugin-rule #'rjsx-mode #'my-rjsx-jump-tag)
+(evilmi-add-one-plugin-rule 'rjsx-mode #'my-rjsx-jump-tag)
#+end_src
Or,
@@ -271,7 +271,7 @@ Or,
(defun my-rjsx-jump-tag ()
(when (string-match "</?>" (string-trim (evilmi-sdk-curline)))
(rjsx-jump-tag)))
-(evilmi-add-one-plugin-rule #'rjsx-mode #'my-rjsx-jump-tag)
+(evilmi-add-one-plugin-rule 'rjsx-mode #'my-rjsx-jump-tag)
#+end_src
Or,
@@ -283,7 +283,7 @@ Or,
(rjsx-jump-tag)
(point))
(defvar append-p t)
-(evilmi-add-one-plugin-rule #'rjsx-mode #'my-rjsx-jump-tag #'my-rjsx-get-tag
append-p)
+(evilmi-add-one-plugin-rule 'rjsx-mode #'my-rjsx-jump-tag #'my-rjsx-get-tag
append-p)
#+end_src
*** Support languages using indentation to identify a block of code