未验证 提交 c954fe31 编写于 作者: B Beto Dealmeida 提交者: GitHub

Insert a space after auto complete (#6717)

* Insert space after auto complete

* Fix autocomplete with space
上级 b260cb66
......@@ -124,7 +124,13 @@ class AceEditorWrapper extends React.PureComponent {
this.props.onChange(text);
}
getCompletions(aceEditor, session, pos, prefix, callback) {
callback(null, this.state.words);
const completer = {
insertMatch: (editor, data) => {
editor.completer.insertMatch({ value: data.caption + ' ' });
},
};
const words = this.state.words.map(word => ({ ...word, completer }));
callback(null, words);
}
setAutoCompleter(props) {
// Loading table and column names as auto-completable words
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册