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
* Prompts the user to select a single document in server-namespace `api`
288
-
* using a custom QuickPick. An optional prompt will customize the title.
288
+
* using a custom QuickPick. An optional `prompt` will customize the title.
289
+
* `typeSuffix` can be provided to filter for specific types of documents (e.g. "cls").
290
+
* If `step` is provided and greater than 1, a back button will be included that resolves to an empty string when pressed.
291
+
* If `numberOfSteps` is provided, the title will be suffixed with the current step and total number of steps (e.g. "(2/4)") instead of the namespace and server information.
quickPick.title=`${prompt ? prompt : "Select a document"} in namespace '${api.ns}' on server '${api.serverId}'`;
306
314
quickPick.prompt=
307
315
"Select a package or folder to view its contents. Selecting '..' shows the previous level's contents. You may also type a full document name into the filter box and press 'Enter' to select that document.";
316
+
quickPick.title=`${prompt ? prompt : "Select a document"}${numberOfSteps ? `(${step}/${numberOfSteps})` : `in namespace '${api.ns}' on server '${api.serverId}'`}`;
0 commit comments