This commit is contained in:
Jonathan Carter 2020-03-14 08:12:48 -07:00
Родитель cb1295c8a8
Коммит 2e75cd5e3a
2 изменённых файлов: 11 добавлений и 11 удалений

Просмотреть файл

@ -1,4 +1,4 @@
# Code Tour 🗺️
# CodeTour 🗺️
Code Tour is a Visual Studio Code extension, which allows you to record and playback guided walkthroughs of your codebases. It's like a virtual brownbag, that can make it easier to onboard to a new project/feature area, visualize bug reports, or understand the context of a code review/PR change. A "code tour" is simply a series of interactive steps, each of which are associated with a specific file/line, and include a description of the respective code. This allows developers to clone a repo, and then immediately start **learning it**, without needing to refer to a `CONTRIBUTING.md` file and/or rely on help from others.

Просмотреть файл

@ -1,17 +1,17 @@
{
"name": "codetour",
"displayName": "Code Tour",
"displayName": "CodeTour",
"description": "VS Code extension that allows you to record and playback guided tours of codebases, directly within the editor",
"publisher": "vsls-contrib",
"version": "0.0.6",
"repository": {
"type": "git",
"url": "https://github.com/vsls-contrib/code-tour"
"url": "https://github.com/vsls-contrib/codetour"
},
"bugs": {
"url": "https://github.com/vsls-contrib/code-tour/issues"
"url": "https://github.com/vsls-contrib/codetour/issues"
},
"homepage": "https://github.com/vsls-contrib/code-tour#readme",
"homepage": "https://github.com/vsls-contrib/codetour#readme",
"license": "ISC",
"icon": "images/icon.png",
"engines": {
@ -88,23 +88,23 @@
{
"command": "codetour.recordTour",
"title": "Record Tour",
"category": "Code Tour",
"category": "CodeTour",
"icon": "$(add)"
},
{
"command": "codetour.refreshTours",
"title": "Refresh Tours",
"category": "Code Tour"
"category": "CodeTour"
},
{
"command": "codetour.resumeTour",
"title": "Resume Tour",
"category": "Code Tour"
"category": "CodeTour"
},
{
"command": "codetour.saveTour",
"title": "Save Tour",
"category": "Code Tour",
"category": "CodeTour",
"icon": "$(save)",
"enablement": "!commentThreadIsEmpty"
},
@ -115,7 +115,7 @@
{
"command": "codetour.startTour",
"title": "Start Tour",
"category": "Code Tour",
"category": "CodeTour",
"icon": "$(play)"
}
],
@ -311,7 +311,7 @@
"explorer": [
{
"id": "codetour.tours",
"name": "Code Tours"
"name": "CodeTour"
}
]
},