Original issue from: @thehackadmin --- When using a regex in a switch statement, the syntax highlighting is broken. ``` $expand_cmd = $current_muleee_file ? { /\.tar\.gz$/ => "/usr/bin/sudo tar -zx -f ${mulesoft_home}/${current_muleee_file} -C ${mulesoft_home}", /\.zip$/ => "/usr/bin/sudo unzip ${mulesoft_home}/${current_muleee_file} -d ${mulesoft_home}", default => "not confiugred to use this type of file: ${current_muleee_file}" } ``` Is valid... maybe not great, but valid. (don't judge me! lol) But it looks like:  If I remove the all of the "/", it looks good, but will not work as expected:  --- Cross reference: https://github.com/lingua-pupuli/puppet-vscode/issues/487