Window 对象 - 表示当前 VS Code 的整个窗口,用 vscode.window 得到这个 Window 对象。
TextEditor 对象 - VS Code 的整个窗口中可能打开了多个 tab,每一个 tab 就是一个 TextEditor 对象,但我们只需要那个当前激活的 tab,我们用 window.activeTextEditor 属性来取得当前工作中的 tab,即 TextEditor 对象。
TextDocument 对象 - 每个 TextEditor 中都有一个文档,这个文档就是 TextDocument 对象,我们用 editor.document 属性来取得 TextEditor 对象中的 TextDocument 对象。TextDocument 对象有一个 getText() 方法来取得其中的所有文本。