浏览 7424 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2007-01-06
引用 What's new:
* Editors are now based on Scintilla http://www.scintilla.org/ * UTF-8 support. * Various Charsets supported (including chinese). * Customizable colors and styles (with predefined Light and Dark theme). * Code folding. * Block comments. * Optionally Alphabetical sorted methods list. * Persistent treeview node states. * Quick Switch between Controller and Views pressing F12. * Mousewheel now rolls editors tabs for fast access. * Tooltips over tabs showing full filename. * Support for subfolder structures (Ex: controllers/users/admins) * Code proposal: o Press CTRL+SPACE to have a dropdown list completing your code as you type it. o The proposal list is currently populated with all methods found in source files inside the app, libraries and plugins folders, (will soon add local variables and Classes). o The proposal list provides additional quick filtering between source types (MVC, helpers, libraries, tests) and the source file name. o Right-click on an item in the proposal list to show a popup menu, allowing to open the source file. * Parameters hint: o Press SHIFT+CTRL+SPACE when inside round brackets to see a hint displaying the parameters for the method. o The parameters list is currently populated with all methods found in source files inside the app, libraries and plugins (as the Code proposal). * Open method's source: o CTRL+CLICK or press ALT+SPACE to have a dropdown list of methods matching the text under the cursor. o Click the item in the list to open and navigate to the method. o The method's source list is currently populated with all methods found in source files inside the app, libraries and plugins folders (as the Code proposal). o The method's source list is provides additional quick filtering between source types (as the Code proposal). * Autocompletion macros o Press Shift+Space to expand macros from customizable shortcuts. * ... and Many fixes. 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2007-01-07
呵呵,支持一下!虽然我很少发言!
|
|
返回顶楼 | |
发表时间:2007-01-08
感觉还不错,小巧玲珑,现在也支持中文了
|
|
返回顶楼 | |
发表时间:2007-01-08
用了一下,感觉功能太简单了,也没有什么snippet。
|
|
返回顶楼 | |
发表时间:2007-01-09
robbin 写道 用了一下,感觉功能太简单了,也没有什么snippet。
snippet可以自己在Preference—Autocomoletion macros里添加, 比起TextMate,Radrails那是非常不成熟。不过好处就是小巧轻快。 |
|
返回顶楼 | |
发表时间:2007-01-10
经常看到大家说"snippet",请问什么是"snippet"?
而"abbrev"又是指什么呢? 请不吝赐教,谢先! |
|
返回顶楼 | |
发表时间:2007-01-10
snippet就是自动完成代码块的template。以MyEclipse编辑器为例子,打个“for”,按alt+.,会出现常用的for循环代码块选择列表,例如选择itertor,它就会自动生成
for (Iterator iter = collection.iterator(); iter.hasNext();) { type element = (type) iter.next(); } 按tab键可以逐个修改变量名字,这样可以省去键入不少代码。示例代码只需按几次tab,修改“collection”,“type”两处然后按回车就可以接下来写自己的代码了。 即不用拷贝代码,又不用敲入整个for环回。节省输入时间。类似这样的常用程序结构都有snippet。不知道这样解释是否OK? |
|
返回顶楼 | |
发表时间:2007-01-10
谢谢楼上的兄弟,解释得很清楚。
原来snippet就是供“代码补全”使用的模板,呵呵 |
|
返回顶楼 | |
发表时间:2007-01-16
不知道什么时候能把cvs还有svn的client加进去。。。。。。。
|
|
返回顶楼 | |
发表时间:2007-01-18
这个东西我修改它的代码字体无效,于是放弃了
|
|
返回顶楼 | |