RoRED v. 0.9.3.7 1月3号发布了
当前位置:首页 ----> Web开发 ----> Ruby/Python
关键词:RoRED,and Many fixes
Stainlesssteel:
改进很多,现在值得推荐了 引用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.


JackyChen:
呵呵,支持一下!虽然我很少发言!


ror:
感觉还不错,小巧玲珑,现在也支持中文了


robbin:
用了一下,感觉功能太简单了,也没有什麽snippet。


Stainlesssteel:
robbin 写道用了一下,感觉功能太简单了,也没有什麽snippet。 snippet可以自己在Preference—Autocomoletion macros里添加, 比起TextMate,Radrails那是非常不成熟。不过好处就是小巧轻快。


coolhair:
常常看到大家说"snippet",请教什麽是"snippet"?而"abbrev"又是指什麽呢?请不吝赐教,谢先!


llade:
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?


coolhair:
感谢楼上的兄弟,解释得很清楚。原来snippet就是供“代码补全”使用的模板,呵呵


河马牛:
不知道什麽时候能把cvs还有svn的client加进去。。。。。。。


kingwzb:
这个东西我修改它的代码字体无效,于是放弃了
原文出处:http://www.javaeye.com/topic/43547