|
@@ -51,7 +51,7 @@ class WindowWatcher {
|
|
* Fires when the selection in an editor has changed.
|
|
* Fires when the selection in an editor has changed.
|
|
*/
|
|
*/
|
|
private onDidChangeTextEditorSelection(event: any) {
|
|
private onDidChangeTextEditorSelection(event: any) {
|
|
- console.log("[GodotTools]:onDidChangeTextEditorSelection");
|
|
|
|
|
|
+ // console.log("[GodotTools]:onDidChangeTextEditorSelection");
|
|
const doc = window.activeTextEditor.document;
|
|
const doc = window.activeTextEditor.document;
|
|
const curText: DocumentFlag= {path: doc.fileName, version: doc.version};
|
|
const curText: DocumentFlag= {path: doc.fileName, version: doc.version};
|
|
// Check content changed
|
|
// Check content changed
|
|
@@ -66,14 +66,14 @@ class WindowWatcher {
|
|
* Fires when the options of an editor have changed.
|
|
* Fires when the options of an editor have changed.
|
|
*/
|
|
*/
|
|
private onDidChangeTextEditorOptions(event: any) {
|
|
private onDidChangeTextEditorOptions(event: any) {
|
|
- console.log("[GodotTools]:onDidChangeTextEditorOptions", event);
|
|
|
|
|
|
+ // console.log("[GodotTools]:onDidChangeTextEditorOptions", event);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
* Fires when the view column of an editor has changed.
|
|
* Fires when the view column of an editor has changed.
|
|
*/
|
|
*/
|
|
private onDidChangeTextEditorViewColumn(event: any) {
|
|
private onDidChangeTextEditorViewColumn(event: any) {
|
|
- console.log("[GodotTools]:onDidChangeTextEditorViewColumn", event);
|
|
|
|
|
|
+ // console.log("[GodotTools]:onDidChangeTextEditorViewColumn", event);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|