bitwisecook / vscode-tcl

Tcl for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=bitwisecook.tcl
MIT License
39 stars 19 forks source link

Escaped backslashes in termination of command substitutions within strings #24

Closed cshorler closed 1 year ago

cshorler commented 1 year ago

the following snippet breaks following format due to the treatment of \]

set parent_prefix "^[re_escape ${parent_path}\\].*"
puts {hello, world}

fixed by PR #23

bitwisecook commented 1 year ago

Your PR looks good, thank you for digging into this! I'll get a release out this week with the merge.

cshorler commented 1 year ago

thanks!