Correct encoding of test.py

This commit is contained in:
Holger Rapp 2011-03-25 07:45:22 +01:00
parent 62231439f0
commit cacecfc9e2

View File

@ -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"), )