Carl Morris

Results 133 comments of Carl Morris

`meta.hashtable.assignment` is less specific. It covers the entire assignment, from the beginning of the key name to the end of the value. `meta` scopes are not intended for use by...

That's the line, but it also only works for bareword/indentifier situations, because the regex is syntactically incorrect to capture the quotes, and incorrectly allows identifiers starting with numeric digits. The...

In PR #156 I did use slightly different scopes between methods and functions, `entity.name.function` and `entity.name.function.method`. This way a normal theme will catch them both with `entity.name.function` but a more...

@jrsconfitto, I've also included a sample for converting to CSON as well: https://github.com/msftrncs/EditorSyntax/blob/build_grammar.ps1/tools/build-atomGrammar.ps1 https://github.com/msftrncs/PwshOutCSON The link to the ConvertFrom-Plist function has been updated above.

Noting #136 as a related issue. Have you checked out PR #155 or #156 for bahavior? Are you expecting `.Link` to accept a parameter, or not? PowerShell does not accept...

@kborowinski, PR #156 demonstrates handling of label, but I made up a scope to assign to it, so without some support in the theme, it will still appear unhandled. Anyone...

The following is the suggestion you receive in VS Code with the PowerShell extension: ``` 'sal' is an alias of 'Set-Alias'. Alias can introduce possible problems and make scripts hard...

A solution: "commentLine", "begin" match: ``` "(?

@omniomi, do forward slashes (/) require escaping in regex? I figure there was something I was missing … I know it cannot rely on spaces, but forgot that the command...