emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/evil-surround 2af81ab3ac 127/175: fix readme on how to add


From: ELPA Syncer
Subject: [nongnu] elpa/evil-surround 2af81ab3ac 127/175: fix readme on how to add a new surround pair
Date: Mon, 9 Oct 2023 13:01:08 -0400 (EDT)

branch: elpa/evil-surround
commit 2af81ab3ac64e4b0515a157a672d8cb89f0172b9
Author: Filipe Correa Lima da Silva <filipe.silva@bcb.gov.br>
Commit: Filipe Correa Lima da Silva <filipe.silva@bcb.gov.br>

    fix readme on how to add a new surround pair
    
    - thanks @edkolev and @amilkov3
    - see issue #136
---
 readme.org | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/readme.org b/readme.org
index c4492a3491..f67360b32e 100644
--- a/readme.org
+++ b/readme.org
@@ -91,8 +91,8 @@ for example to remove all default pairs:
 or to add a pair that surrounds with two ` if you enter ~:
 
 #+BEGIN_SRC emacs-lisp
-  (setq-default evil-surround-pairs-alist (cons '(?~ . ("``" . "``"))
-                                           evil-surround-pairs-alist))
+  (setq-default evil-surround-pairs-alist
+                (push '(?~ . ("``" . "``")) evil-surround-pairs-alist))
 #+END_SRC
 
 ** Add new supported operators



reply via email to

[Prev in Thread] Current Thread [Next in Thread]