Open
Description
Moving from SublimeText/PowerShell#68
And SublimeText/PowerShell#77
Environment
- Editor and Version (VS Code, Atom, Sublime): Sublime
- Your primary theme: Default
Issue Description
There is inconsistency in the chained methods:
$users.Split(",").Trim()
Split
and Trim
get 2 different regions.
Same applies for
$foo.bar
vs
($foo).bar
Screenshots
Expected Behavior
Trim()
andSplit()
should be the same region type.bar
in first and second case should be the same region type
Code Samples
$users.Split(",").Trim()
$foo.bar
($foo).bar