From cacecfc9e2473c008ff99b10461a7c01a5375bce Mon Sep 17 00:00:00 2001 From: Holger Rapp Date: Fri, 25 Mar 2011 07:45:22 +0100 Subject: [PATCH] Correct encoding of test.py --- test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test.py b/test.py index c0146b3..78b8e2d 100755 --- a/test.py +++ b/test.py @@ -95,7 +95,7 @@ WIN_REPLACES = [ # most systems, `+Space = "` ". I work around this, by sending the host # ` as `+_+BS. Awkward, but the only way I found to get this working. ("`", "`_{BS}"), - ("´", "´_{BS}"), + ("´", "´_{BS}"), ("{^}", "{^}_{BS}"), ] def convert_keys(keys): @@ -1579,8 +1579,8 @@ class SnippetOptions_ExpandInwordSnippetsWithOtherChars_Expand2(_VimTest): wanted = "-Expand me!" class SnippetOptions_ExpandInwordSnippetsWithOtherChars_Expand3(_VimTest): snippets = (("test", "Expand me!", "", "i"), ) - keys = "öätest" + EX - wanted = "öäExpand me!" + keys = "öätest" + EX + wanted = "öäExpand me!" class _SnippetOptions_ExpandWordSnippets(_VimTest): snippets = (("test", "Expand me!", "", "w"), )