From 0de61b05471eff0591ec300a09e873e1a26f9b4b Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Fri, 3 Apr 2020 06:21:32 -0700 Subject: tags: backslashes require escape. * tags.tl (escape): Vim is failing to find tag entries when the search patterns are lines containing backslashes. Backslash must be added to the list of characters needing escaping in tag patterns. --- tags.tl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tags.tl b/tags.tl index 1bc1112b..8580ca7a 100755 --- a/tags.tl +++ b/tags.tl @@ -21,7 +21,7 @@ (defun escape (str) (mappend (do caseql @1 - ((#\^ #\$ #\/) (list #\\ @1)) + ((#\^ #\$ #\/ #\\) (list #\\ @1)) (t (list @1))) str)) -- cgit v1.2.3