eclipse 增强自动补全 取消'='和空格自动补全

1. 增强自动补全

打开eclipse,依次点击Window -> Preferences ->Java -> Editor -> Content Assist
找到 Auto activation triggers for Java,在文本框中输入 “.qwertyuiopasdfghjklzxcvbnm” (文本框中原来就有".")
点击Apply and Close

2. 取消’='和空格自动补全

  1. 依次点击 Window -> Show View -> Other
    找到Plug-ins(在 Plug-in Development文件夹下,也可以直接搜索)。 如果没有,则先进行安装。如果有,跳过2。
  2. 安装Plugin Perspective
    (1)Help -> Install New Software
    (2)Work With:选择 All Available Sites
    (3)General Purpose Tools 选择 Eclipse Plug-in Development Environment
    (4)restart Eclipse
  3. 找到org.eclipse.jgace.text,右键选择 Import as -> Source Project。然后找到 src->org.eclipse.jface.text.contentassist->ComplecationProposalPopup.java,选择Ctrl+F查找 if(contains(triggers, key))&#

你可能感兴趣的:(java)