See an introduction to the sublime Code Editor: http://www.iplaysoft.com/sublimetext.html in different dimensions
Real sexy !!
It seems like my taste! Chinese http://www.ithome.com/html/soft/27362.htm
For ol development, we will mainly introduce 2.1 plug-ins, sublimecodeintel, and sublime code snippet.
Sublimecodeintel: enables sublime to jump to variables or method definitions (cross-file) and Code prompts (custom classes are supported)
Sublime code snippet: Enter the code snippet quickly. We can write some code snippets that we often use.
For example:
<snippet> <content><![CDATA[ OpenLayers.Layer.WMS(${1:name},${2:url},{ lyers:${3:name}, format: ${4:'image/jpeg'}, isBaseLayer:"${5:true}" }, { opacity:"${6:1}", singleTile: "${7:false}" } );]]></content> <!-- Optional: Set a tabTrigger to define how to trigger the snippet --> <tabTrigger>OpenLayers.Layer.WMS</tabTrigger> <!-- Optional: Set a scope to limit where the snippet will trigger --> <scope>source.js</scope></snippet>
Click tab to switch down the attribute value.