Skip to content

Commit

Permalink
Fixed Escape key command
Browse files Browse the repository at this point in the history
  • Loading branch information
murtadapy committed Feb 18, 2024
1 parent b9b39b2 commit 78ea82b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "teleporter",
"displayName": "Teleporter",
"description": "Teleport the mouse cursor anywhere you want",
"version": "1.1.0",
"version": "1.1.1",
"publisher": "maltarouti",
"icon":"images/icon.png",
"engines": {
Expand Down Expand Up @@ -105,8 +105,7 @@
},
{
"command": "teleporter.cancelTeleporting",
"key": "escape",
"when": "editorTextFocus"
"key": "escape"
}
]
},
Expand Down
1 change: 0 additions & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export async function activate(context: vscode.ExtensionContext) {
teleporter.run();
}


async function stop() {
for (var t of teleporters) {
if (t.isModeOn) {
Expand Down

0 comments on commit 78ea82b

Please sign in to comment.