我只是想为java自动完成制作一个sublime插件。 当我在一些变量之后键入dot时,它将查找该变量的任何字段或方法。
当我使用quick_panel
时,它很有效。但它看起来更大,它的位置无法移动。
当我使用on_query_completions
以编程方式填充自动完成列表时,它只显示如下空白行:
这是代码:
class yooCommand(sublime_plugin.ViewEventListener ):
def on_query_completions(self, prefix, locations):
return (
[
["me1","run()"],
["me2","some()"]
],
sublime.INHIBIT_WORD_COMPLETIONS | sublime.INHIBIT_EXPLICIT_COMPLETIONS
)
我想这可能是因为我安装了一个软件包。 有没有人有这样的经历?
答案 0 :(得分:0)
最后我解决了这个问题。
这是因为Sublime插件名为hacklang typehacker and autocompletion
现在崇高变得更加有趣:
link to image