Skip to content

Commit b54e639

Browse files
authored
Merge pull request #15 from y-kitamu/master
Fix a bug and package dependencies
2 parents 18658e4 + eb3a963 commit b54e639

File tree

3 files changed

+8
-13
lines changed

3 files changed

+8
-13
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"url": "https://github.com/garaemon/vscode-emacs-tab.git"
1010
},
1111
"engines": {
12-
"vscode": "^1.18.0"
12+
"vscode": "^1.67.0"
1313
},
1414
"categories": [
1515
"Other"
@@ -35,7 +35,7 @@
3535
"vscode:prepublish": "npm run compile",
3636
"compile": "tsc -p ./",
3737
"watch": "tsc -watch -p ./",
38-
"test": "npm run compile && node ./node_modules/vscode/bin/test"
38+
"test": "npm run compile && node ./out/test/index.js"
3939
},
4040
"devDependencies": {
4141
"@types/vscode": "^1.67.0",

src/extension.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,6 @@ class IndentationRule {
122122
return null;
123123
}
124124
}
125-
{
126-
"key": "tab",
127-
"command": "tab",
128-
"when": "editorTextFocus && !editorReadonly && !editorTabMovesFocus"
129-
}
130125
private createRegExp(s: string): RegExp {
131126
try {
132127
if (s && s.length > 0) {

src/test/index.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
// to report the results back to the caller. When the tests are finished, return
1111
// a possible error to the callback or null if none.
1212

13-
import * as testRunner from 'vscode/lib/testrunner';
13+
// import * as testRunner from 'vscode/lib/testrunner';
1414

1515
// You can directly control Mocha options by uncommenting the following lines
1616
// See https://github.com/mochajs/mocha/wiki/Using-mocha-programmatically#set-options for more info
17-
testRunner.configure({
18-
ui: 'tdd', // the TDD UI is being used in extension.test.ts (suite, test, etc.)
19-
useColors: true // colored output from test results
20-
});
17+
// testRunner.configure({
18+
// ui: 'tdd', // the TDD UI is being used in extension.test.ts (suite, test, etc.)
19+
// useColors: true // colored output from test results
20+
// });
2121

22-
module.exports = testRunner;
22+
// module.exports = testRunner;

0 commit comments

Comments
 (0)