Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Since you're new to Sublime Text, I highly recommend you check out: <a href="http://readthedocs.org/docs/sublime-text-unofficial-documentation/en/latest/" rel="noreferrer" title="ST2&#39;s Unofficial Docs">ST2's Unofficial Documentation</a>. If includes a ton of getting started info plus tons of info for extendibility and plugin development.</p> <p>Another great "Getting Started" guide can be found <a href="http://net.tutsplus.com/tutorials/tools-and-tips/sublime-text-2-tips-and-tricks/" rel="noreferrer">here on Nettuts+</a>. </p> <p>If you're looking a list of your snippets and their associated shortcuts, go to "Tools > Snippets..." from your menu.</p> <p>To expand <code>&lt;%</code> into <code>&lt;%| %&gt;</code> (where | is the cursor), add the following you to your User-keybindings (Preferences > Keybindings - User): </p> <pre><code> { "args": { "contents": "% $0 %&gt;" }, "command": "insert_snippet", "context": [ { "key": "selector", "match_all": true, "operand": "source.ruby", "operator": "equal" }, { "key": "preceding_text", "operator": "regex_match", "operand": ".*&lt;", "match_all": true } ], "keys": [ "%" ] } </code></pre> <p>The latest beta includes improved auto-indentation, so if you don't have that installed, try that out. As for autocompletion, Sublime Text 2 by default offers autocompletion of words in the current document (plus all of your snippets/completions from packages). However, if you're looking for IDE-like autocompletion, there is the SublimeCodeIntel plugin. I am reluctant to mention it because it has not been updated in months and the bug reports keep flowing in.</p> <p>Hope that helps.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload