Closed
Description
- Editor name and version: VS Code 1.22.2
- Platform: MacOs 10.13
- Color scheme: Monokai w/ Custom
- MagicPython version: The one shipped with VS Code 1.22.2. Commit:
"b453f26"
Actual behavior
keyword.operator.unpacking.arguments.python
is not detected on a new line
Expected behavior
Should be detected in new lines
Steps to reproduce:
some_long_line_________________________________________ = foo('a', 'b', *items, **kwargs)
# In this case, *items is detected properly
some_long_line_________________________________________ = foo('a', 'b'
*items,
**kwargs)
# here, both arg and kwargs are not detected properkly