You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the C++ #guard snippet, the repeated section to change the path: ${TM_DIRECTORY/.*[\\\/](.*)/_${1:/upcase}/} does not support Windows paths with C:... syntax.
In the C++ #guard snippet, the repeated section to change the path:
${TM_DIRECTORY/.*[\\\/](.*)/_${1:/upcase}/}
does not support Windows paths with C:... syntax.Instead, they appear as:
Changing the match group to
[\\/\\\\]
solves this problem while maintaining *nix compatibility.Now, on Windows you get:
And you get the same thing on Linux.
If needed, I can submit a PR fixing this.
The text was updated successfully, but these errors were encountered: