The goal of this fork is to make a version of vscode that can have fully working window transparency and nice effects to go with that.
If the instructions below fail
- navigate to the project
cd vscode
- install dependencies with
yarn
- build project:
yarn watch
, (useyarn compile
instead if this creates too many file watchers)
- Linux / macOS:
./scripts/code.sh --enable-transparent-visuals
- Windows:
.\scripts\code.bat --enable-transparent-visuals
vscode can be packaged for: win32-ia32 | win32-x64 | darwin | linux-ia32 | linux-x64 | linux-arm
gulp
is used to packagevscode-[platform]
: Builds a packaged version for [platform]vscode-[platform]-min
: Builds a packaged and minified version for [platform]- Note: may need to add
--max-old-space-size=6500
to limit the memory used in packaging, my computer crashed a few times trying to package without that flag
- Note: may need to add
Many of the core components and extensions to VS Code live in their own repositories on GitHub. For example, the node debug adapter and the mono debug adapter have their own repositories. For a complete list, please visit the Related Projects page on our wiki.
Example: Packaging for Arch Linux:
vscode-linux-x64-min
VS Code includes a set of built-in extensions located in the extensions folder, including grammars and snippets for many languages. Extensions that provide rich language support (code completion, Go to Definition) for a language have the suffix language-features
. For example, the json
extension provides coloring for JSON
and the json-language-features
provides rich language support for JSON
.
This repository includes a Visual Studio Code Remote - Containers / Codespaces development container.
- For Remote - Containers, use the Remote-Containers: Open Repository in Container... command which creates a Docker volume for better disk I/O on macOS and Windows.
- For Codespaces, install the Visual Studio Codespaces extension in VS Code, and use the Codespaces: Create New Codespace command.
Docker / the Codespace should have at least 4 Cores and 6 GB of RAM (8 GB recommended) to run full build. See the development container README for more information.
- dark vs, dark plus
- monokai
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT license.