From bb7e9122c85d9f486d9be5e62ba3c144662a390b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Sat, 30 Aug 2014 08:52:50 +0200 Subject: Add support for backticks to movement and text object --- text-motions.c | 1 + 1 file changed, 1 insertion(+) (limited to 'text-motions.c') diff --git a/text-motions.c b/text-motions.c index 090e727..2b9cf8c 100644 --- a/text-motions.c +++ b/text-motions.c @@ -243,6 +243,7 @@ size_t text_bracket_match(Text *txt, size_t pos) { case '<': search = '>'; direction = 1; break; case '>': search = '<'; direction = -1; break; case '"': + case '`': case '\'': { char special[] = " \n)}]>.,"; search = current; -- cgit v1.2.3