How to get the base directory in visual studio code snippet?

前端 未结 2 1311
余生分开走
余生分开走 2021-02-18 16:32

I am trying to get the file current directory in a snippet for visual studio code.

VSCode has a variable: TM_DIRECTORY, which is the fullpath

2条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-18 17:36

    Ok, finally found it.

    ${TM_DIRECTORY/^.+\\/(.*)$/$1/} gives the base directory.

    The part I didn't get was the "double escape" of the directory separator / -> \\/.

提交回复
热议问题