本文整理匯總了TypeScript中vscode.window.visibleTextEditors.forEach方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript window.visibleTextEditors.forEach方法的具體用法?TypeScript window.visibleTextEditors.forEach怎麽用?TypeScript window.visibleTextEditors.forEach使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類vscode.window.visibleTextEditors
的用法示例。
在下文中一共展示了window.visibleTextEditors.forEach方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: validateAllDocuments
function validateAllDocuments() {
// TODO: why doesn't this not work?
//workspace.textDocuments.forEach(each => validateDocument(each));
window.visibleTextEditors.forEach(each => {
if (each.document) {
validateDocument(each.document);
}
});
}
示例2: activateColorDecorations
export function activateColorDecorations(): Disposable {
const disposables: Disposable[] = [];
const colorsDecorationType = window.createTextEditorDecorationType(decorationType);
disposables.push(colorsDecorationType);
window.visibleTextEditors.forEach(editor => {
if (!editor || !editor.document) return;
updateDecoratorsWrapper(colorsDecorationType, editor);
});
window.onDidChangeActiveTextEditor(editor => {
if (!editor || !editor.document) return;
updateDecoratorsWrapperDebounced(colorsDecorationType, editor);
});
workspace.onDidChangeTextDocument(evt => {
if (!evt.document) return;
const editor = findEditorByDocument(evt.document);
if (!editor) return;
updateDecoratorsWrapperDebounced(colorsDecorationType, editor);
});
workspace.onDidOpenTextDocument(document => {
if (!document) return;
const editor = findEditorByDocument(document);
if (!editor) return;
updateDecoratorsWrapperDebounced(colorsDecorationType, editor);
});
(window as any).onDidChangeVisibleTextEditors(editors => {
editors.forEach(editor => {
if (!editor.document) return;
updateDecoratorsWrapperDebounced(colorsDecorationType, editor);
})
});
return Disposable.from(...disposables);
}