teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

1

誤字修正

2018/10/13 03:58

投稿

oikashinoa
oikashinoa

スコア2826

answer CHANGED
@@ -1,4 +1,15 @@
1
1
  仕事中なので詳しく調べてませんが
2
2
  vscodeをrequireするみたいです。
3
3
 
4
- 今インストール済みの機能拡張見たらそんな感じでした
4
+ 今インストール済みの機能拡張見たらそんな感じでした
5
+
6
+ ↓みたら import * as vscode from 'vscode';でいいみたいですね。
7
+ [Microsoft/vscode-extension-samples: Sample code illustrating the VS Code extension API.](https://github.com/Microsoft/vscode-extension-samples)
8
+
9
+ ↓上記のsampleでどれだったか分からなくなったんですが以下の使い方かも。
10
+ function getEditorInfo(): { text: string; tooltip: string; color: string; } {
11
+ const editor = window.activeTextEditor;
12
+ (略)
13
+ const resource = editor.document.uri;
14
+
15
+ 力に成れずすみません