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
Copy file name to clipboardExpand all lines: sm_commands_metadata/g.json
+8-3Lines changed: 8 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -203,22 +203,27 @@
203
203
},
204
204
"git_config": {
205
205
"command_type": "window",
206
-
"doc_string": "Sets the given key value pair in your git config. Shows a dialog box asking whether the key value pair must be set for the global git config or only for the current repository.",
206
+
"doc_string": "Sets the given key value pair in your git config.",
207
207
"args": [
208
208
{
209
209
"name": "key",
210
-
"doc_string": "The target key. Refer to the official git docs https://git-scm.com/docs/git-config for more information on key value pairs.",
210
+
"doc_string": "The target key. Refer to the official git docs https://git-scm.com/docs/git-config for more information on available key value pairs.",
211
211
"type": "string"
212
212
},
213
213
{
214
214
"name": "value",
215
-
"doc_string": "The target value.",
215
+
"doc_string": "The target value to be set for the given key.",
216
216
"type": "string"
217
217
},
218
218
{
219
219
"name": "is_default_value",
220
220
"doc_string": "Whether to set this as the default checked item in the menu.",
221
221
"type": "boolean"
222
+
},
223
+
{
224
+
"name": "is_global",
225
+
"doc_string": "Whether to set this key value pair for the global git config or the local one. If the argument is not provided, then a dialog is shown asking the user to pick.",
0 commit comments