This document offers a set of guidelines for contributing to VSCodeVim. These are just guidelines, not rules; use your best judgment and feel free to propose changes to this document. If you need help, drop by on Slack.
Thanks for helping us in making VSCodeVim better! 👏
The GitHub issue tracker is the preferred channel for tracking bugs and enhancement suggestions. When creating a new bug report do:
- Search against existing issues to check if somebody else has already reported your problem or requested your idea
- Fill out the issue template.
Pull requests are awesome. If you're looking to raise a PR for something which doesn't have an open issue, consider creating an issue first.
When submitting a PR, please fill out the template that is presented by GitHub when a PR is opened.
-
Install prerequisites:
- latest Visual Studio Code
- Node.js v8.0.0 or higher
- Optional: Docker Community Edition 🐋
-
In a terminal:
# fork and clone the repository git clone [email protected]:<YOUR-FORK>/Vim.git cd Vim # Install the dependencies npm install -g gulp-cli npm install # Open in VSCode code . # Choose the "Build, Run Extension" in the dropdown of VSCode's # debug tab to build and run the extension. # Or run tests by selecting the appropriate drop down option # Alternatively, build and run tests through gulp and npm scripts gulp build # build npm test # test (must close all instances of VSCode) # Only available if Docker is installed and running gulp test # run tests inside Docker container gulp test --grep testSuite # run only tests/suites filtered by js regex inside container
The code is split into two parts:
- ModeHandler - Vim state machine
- Actions - 'actions' which modify the state
Actions are all currently stuffed into actions.ts (sorry!). There are:
BaseAction
- the base Action type that all Actions derive from.BaseMovement
- A movement (e.g.w
,h
,{
, etc.) ONLY updates the cursor position or returns anIMovement
, which indicates a start and stop. This is used for movements likeaw
which may actually start before the cursor.BaseCommand
- Anything which is not just a movement is a Command. That includes motions which also update the state of Vim in some way, like*
.
At one point, I wanted to have actions.ts be completely pure (no side effects whatsoever), so commands would just return objects indicating what side effects on the editor they would have. This explains the giant switch in handleCommand in ModeHandler. I now believe this to be a dumb idea and someone should get rid of it.
Consists of two data structures:
VimState
- this is the state of Vim. It's what actions update.RecordedState
- this is temporary state that will reset at the end of a change.
handleKeyEventHelper
is called with the most recent keypress.Actions.getRelevantAction
determines if all the keys pressed so far uniquely specify any action in actions.ts. If not, we continue waiting for keypresses.runAction
runs the action that was matched. Movements, Commands and Operators all have separate functions that dictate how to run them -executeMovement
,handleCommand
, andexecuteOperator
respectively.- Now that we've updated VimState, we run
updateView
with the new VimState to "redraw" VSCode to the new state.
This is my hack to simulate a click event based API in an IDE that doesn't have them (yet?). I check the selection that just came in to see if it's the same as what I thought I previously set the selection to the last time the state machine updated. If it's not, the user probably clicked. (But she also could have tab completed!)
To push a release:
gulp release --semver [SEMVER] --githubToken [TOKEN]
git push --follow-tags
The above Gulp command will:
- Bump the package version based off the semver supplied. Supported values: patch, minor, major.
- Create a changelog using github-changelog-generator.
- Create a Git commit with the above changes.
- Create a Git tag using the new package version.
In addition to building and testing the extension, when a tag is applied to the commit, the CI server will also create a GitHub release and publish the new version to the Visual Studio marketplace.
If you notice a slowdown and have ever run npm test
in the past instead of running tests through VSCode, you might find a .vscode-test/
folder, which VSCode is continually consuming CPU cycles to index. Long story short, you can speed up VSCode by:
$ rm -rf .vscode-test/
Please try your best to adhere our style guidelines.