Skip to content

Commit caa7d00

Browse files
removed trash
1 parent 26e1787 commit caa7d00

File tree

5 files changed

+10
-94
lines changed

5 files changed

+10
-94
lines changed

Diff for: nano.save

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
]
2+
3+
4+
]ḉd[wçleawqr →:qq
5+

Diff for: src/extension.ts

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
'use strict';
22
// The module 'vscode' contains the VS Code extensibility API
33
// Import the module and reference it with the alias vscode in your code below
4-
import * as vscode from 'vscode';
5-
import WordCounter from './util/WordCount';
6-
import WordCounterController from './util/WordCountController';
4+
import * as vscode from 'vscode';
75
import ReplaceSemiColon from './util/ReplaceSemiColon';
86
import ReplaceSemiColonController from './util/ReplaceSemiColonController';
97
import {
@@ -17,12 +15,9 @@ import {
1715
export function activate(context: vscode.ExtensionContext) {
1816
const replaceSemiColon = new ReplaceSemiColon()
1917
const replaceSemiColonController = new ReplaceSemiColonController(replaceSemiColon)
20-
// let disposable = vscode.commands.registerCommand('extension.sayHello', () => {
21-
22-
// });
18+
2319
context.subscriptions.push(replaceSemiColonController);
24-
context.subscriptions.push(replaceSemiColon);
25-
// context.subscriptions.push(disposable);
20+
context.subscriptions.push(replaceSemiColon);
2621
}
2722

2823
// this method is called when your extension is deactivated

Diff for: src/util/ReplaceSemiColon.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { window, StatusBarAlignment, StatusBarItem, Selection } from 'vscode';
22
import * as vscode from 'vscode';
3-
export default class ReplaceSemiColon {
4-
// private _statusBarItem: StatusBarItem;
3+
export default class ReplaceSemiColon {
54
private SEMICOLON_OF_DEATH = ';';
65
private FIND_STR = ';'
76

@@ -56,6 +55,6 @@ export default class ReplaceSemiColon {
5655
}
5756

5857
public dispose() {
59-
// this._statusBarItem.dispose()
58+
6059
}
6160
}

Diff for: src/util/WordCount.ts

-53
This file was deleted.

Diff for: src/util/WordCountController.ts

-30
This file was deleted.

0 commit comments

Comments
 (0)