Thought this might work:
${TM_FILENAME/(.+?)(\.[^.]*$|$)/}
But it's giving me this error:
Error Parsing Snippet
line 1:257: expecting regexp options, found ''
Any tips?
Thought this might work:
${TM_FILENAME/(.+?)(\.[^.]*$|$)/}
But it's giving me this error:
Error Parsing Snippet
line 1:257: expecting regexp options, found ''
Any tips?
My original goal was to get rid of the .js extension, and this works like a charm.
${TM_FILENAME/[\.js]+$//}