1
0
Fork 0

Handle combination of multiline and hidden lines

This commit is contained in:
Willi Goesgens 2015-08-14 14:59:27 +02:00
parent 4797b81f44
commit f07e146ad4
1 changed files with 6 additions and 0 deletions

View File

@ -436,6 +436,12 @@ def analyzeFile(f, filename):
if line[0] == "|":
if line.startswith("| "):
line = line[2:]
elif line.startswith("|~ "):
showCmd = False
line = line[3:]
elif line.startswith("|~"):
showCmd = False
line = line[2:]
else:
line = line[1:]