Public documentation for Visual Studio Code
Перейти к файлу
gregvanl 0711983b6a Remove June 2019 release notes from TOC 2021-06-10 13:07:36 -07:00
.devcontainer Add userEnvProbe, indicate what works in Codespaces 2020-09-11 06:53:01 -07:00
.vscode Disable prettier formatting on markdown files 2020-11-01 19:45:19 -08:00
api Adds editorGhostText.border/foreground to theme-color.md. 2021-06-10 09:28:52 +02:00
blogs fix typo 2021-06-07 06:36:35 -06:00
build Update 1.57 Linux keybindings 2021-06-08 19:25:41 -07:00
docs Merge branch 'main' into vnext 2021-06-10 09:49:42 -07:00
images Update README image 2019-06-05 12:54:24 -07:00
learn Edit pass, add to sitemap 2021-05-11 21:20:00 -07:00
release-notes Remove June 2019 release notes from TOC 2021-06-10 13:07:36 -07:00
remote-release-notes Update 2021-06-08 16:43:19 +02:00
wiki/images Commit LFS 2019-03-11 13:57:10 -07:00
.editorconfig Commit LFS 2019-03-11 13:57:10 -07:00
.gitattributes Add section on using env vars to mount your home folder 2019-05-14 07:40:21 -07:00
.gitignore Commit LFS 2019-03-11 13:57:10 -07:00
.huskyrc.json Bump husky to v4 2021-05-07 08:44:55 -07:00
CONTRIBUTING.md Update broken links and tune for A11y 2019-07-20 20:56:44 -07:00
LICENSE.md Commit LFS 2019-03-11 13:57:10 -07:00
README.md Update remote-release-notes links to use main branch 2021-02-11 15:06:41 -08:00
gulpfile.js Remove tas-client 2020-12-01 15:32:29 -08:00
package.json Resolve hosted-git-info 2021-05-07 08:55:04 -07:00
yarn.lock Resolve hosted-git-info 2021-05-07 08:55:04 -07:00

README.md

vscode logo

Visual Studio Code Documentation

You've found the Visual Studio Code documentation GitHub repository, which contains the content for the Visual Studio Code documentation.

Topics submitted here will be published to the Visual Studio Code portal.

If you are looking for the VS Code product GitHub repository, you can find it here.

Index

Visual Studio Code

VS Code is a lightweight source code editor and powerful development environment for building and debugging modern web, mobile and cloud applications. It is free and available on your favorite platform - Linux, macOS, and Windows.

If you landed here looking for other information about VS Code, head over to our website for additional information.

Feedback

If you want to give documentation feedback, please use the feedback control located at the bottom of each documentation page.

Documentation Issues

To enter documentation bugs, please create a new GitHub issue. Please check if there is an existing issue first.

If you think the issue is with the VS Code product itself, please enter issues in the VS Code product repo here.

Contributing

To contribute new topics/information or make changes to existing documentation, please read the Contributing Guideline.

Workflow

The two suggested workflows are:

  • For small changes, use the "Edit" button on each page to edit the Markdown file directly on GitHub.
  • If you plan to make significant changes or preview the Markdown files in VS Code, clone the repo to edit and preview the files directly in VS Code.

Markdown Preview Button

Cloning

  1. Install Git LFS.
  2. Run git lfs install to setup global git hooks. You only need to run this once per machine.
  3. git clone git@github.com:Microsoft/vscode-docs.git.
  4. Now you can git add binary files and commit them. They'll be tracked in LFS.

Cloning without binary files

You might want to clone the repo without the 1.6GB images. Here are the steps:

  1. Install Git LFS.
  2. Run git lfs install to setup global git hooks. You only need to run this once per machine.
  3. Clone the repo without binary files.
    • macOS / Linux: GIT_LFS_SKIP_SMUDGE=1 git clone git@github.com:Microsoft/vscode-docs.git.
    • Windows: $env:GIT_LFS_SKIP_SMUDGE="1"; git clone git@github.com:Microsoft/vscode-docs.git.
  4. Now you can selectively checkout some binary files to work with. For example:
    • git lfs pull -I "docs/nodejs" to only download images in docs/nodejs
    • git lfs pull -I "release-notes/images/1_4*/*" to only download images in release-notes/images/1_4*
    • git lfs pull -I "docs,api" to download all images in docs and in api
    • git lfs pull -I <PATTERN>, as long as <PATTERN> is a valid Git LFS Include and Exclude pattern.

The history of this repo before we adopted LFS can be found at microsoft/vscode-docs-archive.

Publishing

Steps for how to publish documentation changes can be found here in the (private) repository of the VS Code website.