0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

VSCodeの拡張を自作する:3_イベントを取得する

Posted at

この記事について

概要は
概要のページ
をご確認ください。

この記事で出来ることは、アクティブなエディタを切り替えた時にポップアップに表示するところまでです。

イベントに関して

イベントの概要に関しては、API Patternsの部分に記載があります
基本的なところや命名規則などが記載されています。

ドキュメントの該当箇所

また、仕様としては下記に記載されています。

ドキュメントの該当箇所

windowなどの各オブジェクトが、イベントを持っています。
これにコールバック関数をかましてやると、該当のイベントを取得する事が可能です。

イベント実装

packeage.json側

※ちょっとここまだわかり切っていないところなのですが…
onComandだとダメな気がするので、onStartupFinishedに変更しています。

extensions.ts側

APIドキュメントに従って、受けたいイベントに対してコールバック関数を実装すればよいです。

アクティブなエディタを変更した際にファイル名と実行した回数を表示するサンプル

例のイベント

ドキュメントの該当箇所

コード


let count: number = 0;

let listnerTest: vscode.Disposable;

let showSelectedFileNameInInformation = ( e: vscode.TextEditor|undefined , thisArgs:number = count ): any => {
	count++;
	vscode.window.showInformationMessage(count.toString());
	

	const filenName:string | undefined = e?.document.fileName;
	switch (typeof filenName){
		case "string": {
			vscode.window.showInformationMessage(filenName);
			break;
		}
		case "undefined": {
			vscode.window.showInformationMessage("undefined");
			break;
		}
	}
}

export function activate(context: vscode.ExtensionContext) {

	//イベントハンドラ
	listnerTest = vscode.window.onDidChangeActiveTextEditor( showSelectedFileNameInInformation )
}

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?