提交 97ec7bbb 编写于 作者: J Joao Moreno

suggest: accept

上级 10ead5ff
......@@ -835,21 +835,20 @@ export class SuggestWidget implements EditorBrowser.IContentWidget, IDisposable
}
public acceptSelectedSuggestion(): boolean {
return false;
// switch (this.state) {
// case State.Hidden:
// return false;
// case State.Loading:
// return !this.isAuto;
// default:
// const focus = this.list.getFocus();
// if (focus) {
// this.list.setSelection([focus]);
// } else {
// this.model.cancel();
// }
// return true;
// }
switch (this.state) {
case State.Hidden:
return false;
case State.Loading:
return !this.isAuto;
default:
const focus = this.list.getFocus()[0];
if (focus) {
this.list.setSelection(this.completionModel.items.indexOf(focus));
} else {
this.model.cancel();
}
return true;
}
}
public toggleDetails(): void {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册