File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
"name" : " teleporter" ,
3
3
"displayName" : " Teleporter" ,
4
4
"description" : " Teleport the mouse cursor anywhere you want" ,
5
- "version" : " 1.0.1 " ,
5
+ "version" : " 1.1.0 " ,
6
6
"publisher" : " maltarouti" ,
7
7
"icon" :" images/icon.png" ,
8
8
"engines" : {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export class CursorTeleporterBase {
8
8
maximumSizeOfMatches = 26 * 26 ;
9
9
isModeOn = false ;
10
10
11
- async stop ( ) {
11
+ async dispose ( ) {
12
12
if ( this . isModeOn ) {
13
13
const activeEditor = this . window . activeTextEditor ;
14
14
activeEditor ?. setDecorations ( this . decorationType , [ ] ) ;
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export async function activate(context: vscode.ExtensionContext) {
21
21
async function stop ( ) {
22
22
for ( var t of teleporters ) {
23
23
if ( t . isModeOn ) {
24
- t . stop ( ) ;
24
+ t . dispose ( ) ;
25
25
return ;
26
26
}
27
27
}
You can’t perform that action at this time.
0 commit comments