summaryrefslogtreecommitdiff
path: root/readme.org
diff options
context:
space:
mode:
authorFilipe Correa Lima da Silva <filipe.silva@bcb.gov.br>2018-11-06 18:49:31 -0200
committerFilipe Correa Lima da Silva <filipe.silva@bcb.gov.br>2018-11-06 18:49:31 -0200
commit6028c763997352f8f081a232f8f79f2c1275004e (patch)
treedf6f4fb68a498ac708b4ea9802a1ca00df508260 /readme.org
parent440d391c89a7f6d5a7a0c9486b0e8ac4fc7f43aa (diff)
readme: add missing link to `define-and-bind-text-object` macro1.0.2
Diffstat (limited to 'readme.org')
-rw-r--r--readme.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/readme.org b/readme.org
index 3c5c783..4111c32 100644
--- a/readme.org
+++ b/readme.org
@@ -97,7 +97,7 @@ or to add a pair that surrounds with two ` if you enter ~:
** Add new surround pairs through creation of evil objects
- You can create new evil objects that will be respected by evil-surround. Just use the following code:
#+BEGIN_SRC emacs-lisp
- ;; this macro was extracted from a stackoveflow answer. link is missing
+ ;; this macro was copied from here: https://stackoverflow.com/a/22418983/4921402
(defmacro define-and-bind-quoted-text-object (name key start-regex end-regex)
(let ((inner-name (make-symbol (concat "evil-inner-" name)))
(outer-name (make-symbol (concat "evil-a-" name))))