1
0
forked from VimPlug/jedi

Handle backslash escaping.

This commit is contained in:
Dave Halter
2015-02-18 17:32:34 +01:00
parent 595da50ab8
commit 39bf9f426b
3 changed files with 19 additions and 12 deletions

View File

@@ -265,6 +265,7 @@ def generate_tokens(readline):
break
yield NAME, token, spos, prefix
elif initial == '\\' and line[start:] == '\\\n': # continued stmt
additional_prefix += line[start:]
continue
else:
if token in '([{':