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();