Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 1.48 KB

README.md

File metadata and controls

29 lines (19 loc) · 1.48 KB

atom-vscode

Atom with VSCode API! This allows using VSCode extensions directly in Atom.

Build Status (Github Actions) Dependency Status apm apm

Usage

npm install atom-vscode

Roadmap and Contributing

The goal is write wrappers to provide VSCode API in Atom. This allows using the VSCode extensions.

The most used API are added by going through @types/vscode functions and writing their Atom equivalent as functions with the same name. The goal is to be as close as possible, but there maybe differences that cannot covered by this package.

Here is also the documentation for the API https://code.visualstudio.com/api/references/vscode-api

The most important functions are under window and workspace namespace https://code.visualstudio.com/api/references/vscode-api#window https://code.visualstudio.com/api/references/vscode-api#workspace

atom-ide-base is added as the dependency of this package, which installs all the IDE packages to provide the functionality of Linter, Datatip, Terminal, etc.