- Install npm and Node.js
- Install Visual Studio Code
git clone --recursive https://github.com/devreplay/vscode-devreplay.git
cd vscode-devreplay
npm install # install required packages for vscode-devreplay
code . # run VS Code
- In VS Code: 'File' -> 'Open Folder...' and select 'vscode-devreplay' (the directory with your edits)
- Press
F5
- A new VS Code window should open, with '[Extension Development Host]' in the title bar. This is running your modified version of vscode-devreplay
We use eslint for linting our sources. You can run eslint across the sources by calling yarn eslint from a terminal or command prompt.
To lint the source as you make changes, you can install the eslint extension.
- Fork it (via GitHub) in your account
- Add your project URL
git remote add mine https://github.com/yourname/vscode-R.git
- Create your feature branch
git checkout -b my-new-feature
- Commit your changes
git commit -am 'Add some feature'
- Push to the branch
git push mine my-new-feature
- Create new Pull Request (via GitHub)