Skip to content

Commit 78ea82b

Browse files
committed
Fixed Escape key command
1 parent b9b39b2 commit 78ea82b

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "teleporter",
33
"displayName": "Teleporter",
44
"description": "Teleport the mouse cursor anywhere you want",
5-
"version": "1.1.0",
5+
"version": "1.1.1",
66
"publisher": "maltarouti",
77
"icon":"images/icon.png",
88
"engines": {
@@ -105,8 +105,7 @@
105105
},
106106
{
107107
"command": "teleporter.cancelTeleporting",
108-
"key": "escape",
109-
"when": "editorTextFocus"
108+
"key": "escape"
110109
}
111110
]
112111
},

src/extension.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ export async function activate(context: vscode.ExtensionContext) {
1717
teleporter.run();
1818
}
1919

20-
2120
async function stop() {
2221
for (var t of teleporters) {
2322
if (t.isModeOn) {

0 commit comments

Comments
 (0)