Eclipse代码智能拼写提示(取消自动补全代码)
代码拼写智能提示:
1.依次打开 Windows--Preferences--Java--Editor--Content Assist
2.找到 Auto Activation Triggers for Java,输入
.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
3.Apply and Close
取消输入空格,=时自动补全功能
(1). 打开"Window--Show View--Other--Plug-in Development--Plug-ins"
(2). 没有Plug-in Development,安装
Work With=Oxygen - http://download.eclipse.org/releases/oxygen(根据版本选择)
type filter text=Plug-in Development
(3). 找到插件org.eclipse.jface.text,右键点击,选择import as Project from a Repository,导入完成后,在你的workspace就可以看到这个project了
src--org.eclipse.jface.text.contentassist--CompletionProposalPopup.java
搜索并修改"char[] triggers = t.getTriggerCharacter(); " 下面的if判断语句,
if(key != '=' && key != 0x20 && contains(triggers,key))
(4). 把修改好的org.eclipse.jface.text导出
右键点击你的workspace里的org.eclipse.jface.text,选择export-->Deployable plugins and fragments, next,destination 选择archive file,然后finish.你就可以在zip文件里看到生成好的jar ,用它替换掉eclipse/plugins里面的
org.eclipse.jface.text.版本号.jar(可以保存之后再删)
上一篇: eclipse/sts 代码注释模板
下一篇: Eclipse安装STS失败
推荐阅读
-
idea快捷键设置成eclipse(自动补全代码的快捷键)
-
MyEclipse6.5编程的时候怎么开启自动提示和代码自动补全?
-
Android Studio 设置代码提示和代码自动补全快捷键
-
IntelliJ IDEA 设置代码提示或自动补全的快捷键 (附IntelliJ IDEA常用快捷键)
-
演示Eclipse插件实现代码提示和补全
-
AndroidStudio NDK开发,解决“C++无法自动补全及跟踪代码”,提示“Cannot find declaration to go to”
-
IntelliJ IDEA 设置代码提示或自动补全的快捷键功能
-
Eclipse代码自动补全设置
-
eclipse自动补全左侧代码
-
关于优化Eclipse中代码补全自动提示