我正在尝试为Java实现代码完整。我正在尝试使用show-hint插件。
javaEditor.on("keyup", function (cm, event) {
CodeMirror.commands.autocomplete(cm, null, {
completeSingle: false,
hint : function(cm, options) {
return CodeMirror.hint.fromList(cm, {words: arrayOfWords});
}
}
这完成了输入的单词。我想要其他一些使用自定义。
我看到这些应该是基于文档可能的,但我没有看到任何关于如何做的文档或示例。