mirror of
https://github.com/Silicon1602/srdl2sv.git
synced 2024-11-14 11:03:36 +00:00
Add indentation to case-block
This commit is contained in:
parent
31179eeecc
commit
3089edc20d
@ -126,7 +126,7 @@ class Component():
|
|||||||
|
|
||||||
# Define triggers for which the indentation level will increment or
|
# Define triggers for which the indentation level will increment or
|
||||||
# decrement on the next line
|
# decrement on the next line
|
||||||
trigger_re = re.compile(r'.*?((?:\bbegin\b|\{)|(?:\bend\b|}))([^$]*)')
|
trigger_re = re.compile(r'.*?((?:\bbegin\b|\{|\bcase\b)|(?:\bend\b|}|\bendcase\b))([^$]*)')
|
||||||
|
|
||||||
rtl_indented = []
|
rtl_indented = []
|
||||||
|
|
||||||
@ -145,7 +145,7 @@ class Component():
|
|||||||
matchObj = trigger_re.match(line_split)
|
matchObj = trigger_re.match(line_split)
|
||||||
|
|
||||||
if matchObj:
|
if matchObj:
|
||||||
if matchObj.group(1) in ('begin', '{'):
|
if matchObj.group(1) in ('begin', '{', 'case'):
|
||||||
indent_lvl_next += 1
|
indent_lvl_next += 1
|
||||||
else:
|
else:
|
||||||
indent_lvl = indent_lvl_next - 1
|
indent_lvl = indent_lvl_next - 1
|
||||||
|
Loading…
Reference in New Issue
Block a user