本文整理匯總了TypeScript中vscode.window.visibleTextEditors.some方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript window.visibleTextEditors.some方法的具體用法?TypeScript window.visibleTextEditors.some怎麽用?TypeScript window.visibleTextEditors.some使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類vscode.window.visibleTextEditors
的用法示例。
在下文中一共展示了window.visibleTextEditors.some方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: refresh
@gate()
@debug()
async refresh(reset: boolean = false) {
const cc = Logger.getCorrelationContext();
if (reset) {
this._uri = unknownGitUri;
this._selection = undefined;
this.resetChild();
}
const editor = window.activeTextEditor;
if (editor == null || !Container.git.isTrackable(editor.document.uri)) {
if (
this.uri === unknownGitUri ||
(Container.git.isTrackable(this.uri) &&
window.visibleTextEditors.some(e => e.document && UriComparer.equals(e.document.uri, this.uri)))
) {
return true;
}
this._uri = unknownGitUri;
this._selection = undefined;
this.resetChild();
if (cc !== undefined) {
cc.exitDetails = `, uri=${Logger.toLoggable(this._uri)}`;
}
return false;
}
if (
UriComparer.equals(editor!.document.uri, this.uri) &&
(this._selection !== undefined && editor.selection.isEqual(this._selection))
) {
if (cc !== undefined) {
cc.exitDetails = `, uri=${Logger.toLoggable(this._uri)}`;
}
return true;
}
const gitUri = await GitUri.fromUri(editor!.document.uri);
if (
this.uri !== unknownGitUri &&
UriComparer.equals(gitUri, this.uri) &&
(this._selection !== undefined && editor.selection.isEqual(this._selection))
) {
return true;
}
this._uri = gitUri;
this._selection = editor.selection;
this.resetChild();
if (cc !== undefined) {
cc.exitDetails = `, uri=${Logger.toLoggable(this._uri)}`;
}
return false;
}
示例2: refresh
@gate()
@debug({
exit: r => `returned ${r}`
})
async refresh(reset: boolean = false) {
const cc = Logger.getCorrelationContext();
if (reset) {
this._uri = unknownGitUri;
this.resetChild();
}
const editor = window.activeTextEditor;
if (editor == null || !Container.git.isTrackable(editor.document.uri)) {
if (
this.uri === unknownGitUri ||
(Container.git.isTrackable(this.uri) &&
window.visibleTextEditors.some(e => e.document && UriComparer.equals(e.document.uri, this.uri)))
) {
return true;
}
this._uri = unknownGitUri;
this.resetChild();
if (cc !== undefined) {
cc.exitDetails = `, uri=${Logger.toLoggable(this._uri)}`;
}
return false;
}
if (UriComparer.equals(editor!.document.uri, this.uri)) {
if (cc !== undefined) {
cc.exitDetails = `, uri=${Logger.toLoggable(this._uri)}`;
}
return true;
}
let gitUri = await GitUri.fromUri(editor!.document.uri);
let uri;
if (gitUri.sha !== undefined) {
// If we have a sha, normalize the history to the working file (so we get a full history all the time)
const workingUri = await Container.git.getWorkingUri(gitUri.repoPath!, gitUri);
if (workingUri !== undefined) {
uri = workingUri;
}
}
if (this.uri !== unknownGitUri && UriComparer.equals(uri || gitUri, this.uri)) {
return true;
}
if (uri !== undefined) {
gitUri = await GitUri.fromUri(uri);
}
this._uri = gitUri;
this.resetChild();
if (cc !== undefined) {
cc.exitDetails = `, uri=${Logger.toLoggable(this._uri)}`;
}
return false;
}