簡體   English   中英

向上/向下鍵映射在帶有Vrapper XML intellisense的Eclipse中不起作用

[英]Line up/down key mapping not working in Eclipse with Vrapper XML intellisense

我在Vrapper中使用Eclipse Mars。 我已將Line Up映射到ctrl + p,將Line Down映射到ctrl + n,以選擇智能感知列表項,而無需使用向上和向下箭頭。 這使我無需離開主鍵盤就可以進行智能感知。

這適用於Java源代碼,但不適用於xml文件。 Ctrl + P和Ctrl + N只是不關注內容輔助窗口。 有什么我可以解決的嗎?

我沒有找到解決方案,但是找到了使用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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM