We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a6abb3 commit acafc08Copy full SHA for acafc08
src/types.ts
@@ -16,7 +16,8 @@ export const Placeholders = {
16
} as const;
17
18
export const Mappings = {
19
- FileName: '${1:${TM_FILENAME_BASE}}',
+ // https://code.visualstudio.com/docs/editor/userdefinedsnippets#_variables
20
+ FileName: '${1:${TM_FILENAME_BASE}}', // $1 第一个光标位置,${TM_FILENAME_BASE} $1位置的placeholder
21
FirstTab: '${1:first}',
22
SecondTab: '${2:second}',
23
ThirdTab: '${3:third}',
0 commit comments