Update name
This commit is contained in:
Родитель
2e75cd5e3a
Коммит
0dccccfa26
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"title": "Code Tour schema for the tour.json file",
|
||||
"title": "CodeTour schema for the tour.json file",
|
||||
"type": "object",
|
||||
"required": ["title", "steps"],
|
||||
"properties": {
|
||||
|
|
|
@ -23,7 +23,7 @@ function createStartTourItem() {
|
|||
vscode.StatusBarAlignment.Left
|
||||
);
|
||||
|
||||
startTourItem.text = "$(play) Start Code Tour";
|
||||
startTourItem.text = "$(play) Start CodeTour";
|
||||
startTourItem.command = `${EXTENSION_NAME}.startTour`;
|
||||
startTourItem.show();
|
||||
|
||||
|
@ -51,7 +51,7 @@ export function registerStatusBar() {
|
|||
}
|
||||
|
||||
const prefix = store.isRecording ? "Recording " : "";
|
||||
currentTourItem.text = `${prefix}Code Tour: #${store.currentStep +
|
||||
currentTourItem.text = `${prefix}CodeTour: #${store.currentStep +
|
||||
1} of ${store.currentTour.steps.length} (${
|
||||
store.currentTour.title
|
||||
})`;
|
||||
|
|
|
@ -21,7 +21,7 @@ import { EXTENSION_NAME } from "../constants";
|
|||
const IN_TOUR_KEY = `${EXTENSION_NAME}:inTour`;
|
||||
|
||||
const CONTROLLER_ID = "codetour";
|
||||
const CONTROLLER_LABEL = "Code Tour";
|
||||
const CONTROLLER_LABEL = "CodeTour";
|
||||
const CONTROLLER_ICON = Uri.parse(
|
||||
"https://cdn.jsdelivr.net/gh/vsls-contrib/code-tour/images/icon.png"
|
||||
);
|
||||
|
|
Загрузка…
Ссылка в новой задаче