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

suggest: accept

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