Skip to content

Commit

Permalink
Fix some problems with tslint and Travis.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnfn committed Jun 30, 2016
1 parent 536777f commit caddbad
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,17 @@ node_js:
- "4.2"

env:
- GITHUB_TOKEN=1b17d62d38a4846efa7ea4de4b773b581787b0f1
- GITHUB_TOKEN=1b17d62d38a4846efa7ea4de4b773b581787b0f1

before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
sleep 3;
fi

install:
- typings install
- npm install
- npm run vscode:prepublish

Expand Down
2 changes: 1 addition & 1 deletion src/mode/modeHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ export class ModeHandler implements vscode.Disposable {
// have changed it as well. (TODO: do you even decomposition bro)

if (vimState.currentMode !== this.currentModeName) {
this.setCurrentModeByName(vimState)
this.setCurrentModeByName(vimState);

if (vimState.currentMode === ModeName.Normal) {
ranRepeatableAction = true;
Expand Down
2 changes: 1 addition & 1 deletion test/mode/modeNormal.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ suite("Mode Normal", () => {

let {
newTest,
newTestOnly
// newTestOnly
} = getTestingFunctions(modeHandler);

setup(async () => {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
"exclude": [
"node_modules"
]
}
}

0 comments on commit caddbad

Please sign in to comment.