A. myeclipse 10 jsp 和js 文件代码提示问题
|myeclipse 10 jsp 和js 文件代码提示设置正确就可以在编写代码的时候正确提示了。
设置方法:
1、依次打开Window | Preferences | Web | javaScript | Editor | Content Assist.
Insertion
Completion Inserts/Completion Overwrites - Select whether choosing an item from the Content Assist list will cause new code to be entered or existing code to be overwritten.
Insert single proposals automatically -If enabled, the content assist suggestion will be inserted automatically when only one content assist option exists
Insert common prefixes automatically - If enabled, Content Assist will automatically insert the common prefix of all possible completions similar to Unix shell expansion. This can be used repeatedly, even while the Content Assist window is being displayed.
Fill argument names on completion - If enabled, Content Assist will add arguments when completing a method.
Guess filled function arguments - If enabled, Content Assist will fill the arguments with the best matching function, according to the context.
Sorting and Filtering
Sort proposals - Select how the proposals should be sorted in the Content Assist list.
Hide proposals not visible in the invocation context - If enabled, the Java element proposals are limited by the rules of visibility. For example, private field proposals of other classes would not be displayed.
Show camel case matches - If enabled, camel case matches are displayed (e.g. NPE is expanded to NullPointerException).
Hide forbidden references - If enabled, references to JavaScript elements forbidden by access rules are not displayed.
Hide discouraged references - If enabled, references to JavaScript elements discouraged by access rules are not displayed.
Hide deprecated references - If enabled, references to deprecated JavaScript elements are not displayed.
Auto-activation
Enable auto activation - If enabled, the Content Assist list will automatically be displayed when the first letters of an element are typed.
B. jsp中的javascript代码无法提示
jsp中的javascript代码提示要在eclipse中设置:
1.打开eclipse,找到菜单栏的window->Preferences,在弹出的窗口中找到Java->Editor->Content Assist,点击后在右侧的窗口中找到Auto Activation-->Enable auto activation,在Auto activation triggers for Java:一栏中输入值:zjava,点击右下角的Apply,然后点击OK;
3.选择左上角菜单:File->Export,在弹出的窗口中选择General->Preferences,选择文件的保存路径,任意路径即可,点击Finish,然后去你刚才保存的文件下查看,不出意料的话会有一个这样的文件:eclipse_js.epf;
4.打开eclipse_js.epf文件,找到zjava,将其值改为:
.
然后找到zjs,将其值改为:
.
5.返回eclipse,选择左上角菜单File->Import,选择General->Preferences,找到刚才的保存的文件,选择文件完成后点击Finish,最终设置完成。
C. 怎么设置myeclipse,在编写javascript代码是自动提示
MyEclipse 提示设置JSP自动提示
1、快捷键提示代码
window-->Preferences的General-->Keys下修改Content Assist的快捷键为Alt+/,这样就可以通过快捷键得到提示代码
一般,快捷键默认就是Alt+/
2、自动提示
window-->preferences的java->Editor->Code Assist,选上Enable auto activation选择框
3、增强自动提示
如果在上面2中的Auto activation triggers for Java中只有.就是说只有在输入.之后才会自动提示,可以修改一下这个配置,方法:
* 打开MyEclipse,进入window-->Preferences,选择java-->Editor-->Content Assist
* 在Auto Activation triggers for java这个选项的.后随便加几个字母,例如aaa方便后面的查找修改,点击OK按钮
* 在File-->Export弹出的窗口中选择Perferences,点击下一步,选择导出文件路径
* 用记事本打开刚刚保存的*.epf文件
* ctrl + F快捷键查找刚输入的.aaa
* 把.aaa改成.abcdefghijklmnopqrstuvwxyz(,保存,关闭记事本)
*回到MyEclipse界面,File-->Import,在弹出的窗口中选择Perferences,下一步,选择刚修改的*.epf文件,点击“打开”,点击“Finish”
D. 在js代码自动提示中,点后边自动提示出不来函数,等,已经配置spket还是没有提示
提示java代码可以用ALT+/ 键就可以了(前提是你要把你需要的类或方法的首字母打出来)..下面是我收集的一些快捷键你可以参考下
Ctrl+M 当前窗口最大化
Ctrl+F7 视窗口切换
Ctrl+F8 模式切换
Ctrl+F6 编辑窗口切换(手指张得太大不雅观啊)
Ctrl+E 编辑窗口切换(这个比较文雅点 :) )
Alt+← 前一个编辑的页面
Alt+→ 下一个编辑的页面
Ctrl+Alt+↓ 复制(增加)当前行到下一行
Ctrl+Alt+↑ 复制(增加)当前行到上一行
Alt+↓ 当前行和下面一行交互位置(用不着剪切了)
Alt+↑ 当前行和上面一行交互位置
Ctrl+D 删除当前行
Alt+Enter 显示当前选择文件的属性
Shift+Enter 在当前行插入空行(下一行)
Shift+Ctrl+Enter 在当前行插入空行(上一行)
Ctrl+Q 定位到最后编辑的地方
Ctrl+L 定位在具体某行
Ctrl+/ 注释当前行(可多行),再按则取消注释
Ctrl+Shift+R 找文件
Ctrl+Shift+T 找类
Ctrl+K 选中的Word快速定位到下一个
Ctrl+Shift+K 选中的Word快速定位到上一个
Ctrl+Shift+U 选中后列出查询到的结果
Ctrl+/(小键盘) 折叠当前类中的所有代码
Ctrl+×(小键盘) 展开当前类中的所有代码
Ctrl+Shift+P 定位到对于的匹配符(如{},())
CTRL+SHIFT+X 切换字符的大小写(大写)
CTRL+SHIFT+Y 切换字符的大小写(小写)
Ctrl+1 当某行出错时或警告时,跳出帮助
Ctrl+Shift+F 格式排版
Alt+Shift+R 重命名 (改量和类名时很方便)
Alt+Shift+C 修改函数结
Alt+Shift+M 重构方法 (选中要重构方法,再生成个新方法)
Alt+Shift+Z 重构恢复
Ctrl+W 关闭当前窗口
Ctrl+Shift+F4 关闭所有打开的窗口
Ctrl+Shift+O : import相关类,同时若已经import的类,没有被用到,就删除。
如果想在jsp提示的话.. 打出来< 就有提示了..
<>中的参数还是可以使用alt+/键来提示的..