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: extensions/ql-vscode/package.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -302,8 +302,8 @@
302
302
"properties": {
303
303
"codeQL.queryHistory.format": {
304
304
"type": "string",
305
-
"default": "%q on %d - %s %r [%t]",
306
-
"markdownDescription": "Default string for how to label query history items.\n* %t is the time of the query\n* %q is the human-readable query name\n* %f is the query filename\n* %d is the database name\n* %r is the number of results\n* %s is a status string"
305
+
"default": "${queryName} on ${databaseName} - ${status} ${resultCount} [${startTime}]",
306
+
"markdownDescription": "Default string for how to label query history items.\n\nThe following variables are supported:\n* **${startTime}** - the time of the query\n* **${queryName}** - the human-readable query name\n* **${queryFileBasename}** - the query file's base name\n* **${queryLanguage}** - the query language\n* **${databaseName}** - the database name\n* **${resultCount}** - the number of results\n* **${status}** - a status string"
0 commit comments