All Projects → microsoft → Vscode Docs

microsoft / Vscode Docs

Licence: other
Public documentation for Visual Studio Code

Programming Languages

CSS
56736 projects
javascript
184084 projects - #8 most used programming language
Dockerfile
14818 projects

Labels

Projects that are alternatives of or similar to Vscode Docs

Swdc Vscode
Time-tracking plugin for Visual Studio Code
Stars: ✭ 268 (-93.52%)
Mutual labels:  vscode
Sde
Swift Development Environment based on VS Code
Stars: ✭ 311 (-92.48%)
Mutual labels:  vscode
Vscode Vuehelper
🐵vscode插件,vue,vue-router和vuex的代码提示
Stars: ✭ 351 (-91.52%)
Mutual labels:  vscode
Vscode Memo
Markdown knowledge base with bidirectional [[link]]s built on top of VSCode
Stars: ✭ 266 (-93.57%)
Mutual labels:  vscode
Graphql Starter
💥 Monorepo template (seed project) pre-configured with GraphQL API, PostgreSQL, React, Relay, and Material UI.
Stars: ✭ 3,377 (-18.37%)
Mutual labels:  vscode
Frontend Vscode Extensionpack
(820+ Users) Handpicked collection of vscode extensions for FE development. Get the extension @ https://marketplace.visualstudio.com/items?itemName=solodynamo.frontend-vscode-extensionpack
Stars: ✭ 329 (-92.05%)
Mutual labels:  vscode
Vscode Palenight Theme
✨ An elegant and juicy material-inspired theme for Visual Studio Code.
Stars: ✭ 263 (-93.64%)
Mutual labels:  vscode
Vscode Shellcheck
An extension to use shellcheck linter in vscode
Stars: ✭ 354 (-91.44%)
Mutual labels:  vscode
Nb
CLI and local web plain text note‑taking, bookmarking, and archiving with linking, tagging, filtering, search, Git versioning & syncing, Pandoc conversion, + more, in a single portable script.
Stars: ✭ 3,846 (-7.03%)
Mutual labels:  vscode
Openvsx
An open-source registry for VS Code extensions
Stars: ✭ 344 (-91.68%)
Mutual labels:  vscode
Vscode Solargraph
A Visual Studio Code extension for Solargraph.
Stars: ✭ 292 (-92.94%)
Mutual labels:  vscode
Vscode Winddown
VS Code extension that encourages you to take a break.
Stars: ✭ 299 (-92.77%)
Mutual labels:  vscode
Themer Gui
A graphical UI for themer. Replaced by Progressive Web App at https://themer.dev.
Stars: ✭ 337 (-91.85%)
Mutual labels:  vscode
Ltfinderbuttons
My Finder buttons collection for macOS.
Stars: ✭ 269 (-93.5%)
Mutual labels:  vscode
Chrome Vs Code
A web browser integrated in VS Code editor tabs. ☢️ experimental ☢️
Stars: ✭ 351 (-91.52%)
Mutual labels:  vscode
Vscode Cordova
A Visual Studio Code extension providing intellisense, debug, and build support for Cordova and Ionic projects.
Stars: ✭ 267 (-93.55%)
Mutual labels:  vscode
Wpf.notifications
WPF notifications UI controls (as seen in VS Code)
Stars: ✭ 318 (-92.31%)
Mutual labels:  vscode
Reactnativets
Boilerplate of a React Native project in Typescript.
Stars: ✭ 364 (-91.2%)
Mutual labels:  vscode
Vscode Php Intellisense
Advanced PHP IntelliSense for Visual Studio Code 🆚💬
Stars: ✭ 358 (-91.35%)
Mutual labels:  vscode
Vscodejupyter
Jupyter for Visual Studio Code
Stars: ✭ 337 (-91.85%)
Mutual labels:  vscode

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.

Note: The vscode-docs repository uses Git LFS (Large File Storage) for storing binary files such as images and .gifs. If you are contributing or updating images, please enable Git LFS per the instructions in the Contributing section below.

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 [email protected]: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 [email protected]:Microsoft/vscode-docs.git.
    • Windows: $env:GIT_LFS_SKIP_SMUDGE="1"; git clone [email protected]: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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].