使用Vrapper XML intellisense

时间:2016-01-17 21:35:29

标签: eclipse vim eclipse-plugin autohotkey content-assist

我正在使用带有Vrapper的Eclipse Mars。我已将Line Up映射到ctrl + p和Line Down to to ctrl + n以选择智能感知列表项而不使用向上和向下箭头。这允许我在不离开主键盘的情况下使用intellisense。

这适用于Java源代码,但它不适用于xml文件。 ctrl + p和ctrl + n只是不关注内容辅助窗口。我能做些什么来解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

我没有找到解决方案,但找到了使用Autohotkey的工作。请找到下面的脚本


    ;Eclipse Vrapper with intellisense
    #If WinActive("ahk_class SWT_Window0") or WinActive("ahk_class #32770")
    ^n::
        Send,{Down}
    return
    ^p::
        Send, {Up}
    return
    #If