File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
src/vs/platform/terminal/common Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,14 @@ const terminalPlatformConfiguration: IConfigurationNode = {
121
121
'anyOf' : [
122
122
{ type : 'null' } ,
123
123
terminalProfileSchema
124
+ ] ,
125
+ defaultSnippets : [
126
+ {
127
+ body : {
128
+ path : '${1}' ,
129
+ icon : '${2}'
130
+ }
131
+ }
124
132
]
125
133
} ,
126
134
[ TerminalSettingId . AutomationProfileMacOs ] : {
@@ -131,6 +139,14 @@ const terminalPlatformConfiguration: IConfigurationNode = {
131
139
'anyOf' : [
132
140
{ type : 'null' } ,
133
141
terminalProfileSchema
142
+ ] ,
143
+ defaultSnippets : [
144
+ {
145
+ body : {
146
+ path : '${1}' ,
147
+ icon : '${2}'
148
+ }
149
+ }
134
150
]
135
151
} ,
136
152
[ TerminalSettingId . AutomationProfileWindows ] : {
@@ -141,6 +157,14 @@ const terminalPlatformConfiguration: IConfigurationNode = {
141
157
'anyOf' : [
142
158
{ type : 'null' } ,
143
159
terminalProfileSchema
160
+ ] ,
161
+ defaultSnippets : [
162
+ {
163
+ body : {
164
+ path : '${1}' ,
165
+ icon : '${2}'
166
+ }
167
+ }
144
168
]
145
169
} ,
146
170
[ TerminalSettingId . ShellLinux ] : {
You can’t perform that action at this time.
0 commit comments