From d21d86aafc83284a68961a81810762065d15e8ab Mon Sep 17 00:00:00 2001 From: Erlend Hamberg Date: Wed, 28 Oct 2020 08:41:33 +0100 Subject: [PATCH] =?UTF-8?q?Add=20single=20quotes=20to=20=E2=80=98any=20quo?= =?UTF-8?q?te=E2=80=99=20text=20objects?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/editor/evil/autoload/textobjects.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/editor/evil/autoload/textobjects.el b/modules/editor/evil/autoload/textobjects.el index 5808946ea..29ffe25cf 100644 --- a/modules/editor/evil/autoload/textobjects.el +++ b/modules/editor/evil/autoload/textobjects.el @@ -50,6 +50,7 @@ This excludes the protocol and querystring." '(("'" . "'") ("\"" . "\"") ("`" . "`") + ("‘" . "’") ("“" . "”")))) (evil-textobj-anyblock-inner-block count beg end type))) @@ -60,5 +61,6 @@ This excludes the protocol and querystring." '(("'" . "'") ("\"" . "\"") ("`" . "`") + ("‘" . "’") ("“" . "”")))) (evil-textobj-anyblock-a-block count beg end type)))