I am looking to get the following assigned to Keybindings. I am able to make a snippet for this, yet would prefer to be able to CTRL + > just like in Textmate.

<%= %>

What do I need to add and where do I need to add it, or where could I find out.

link|improve this question

feedback

2 Answers

up vote 15 down vote accepted

If you just want to literally insert those characters, you can set up your "User Key Bindings" like this:

[
    { "keys": ["ctrl+."], "command": "insert", "args": {"characters": "<%= %>"} }
]

You can use the Default Key Bindings file as an example for possible key binding commands. Both User and Default are located in Sublime Text 2 -> Preferences on OS X.

Not sure if you really wanted "ctrl+shift+.", but it would work as well.

To move the cursor to the middle during insert, you can use insert_snippet like this:

[
    { "keys": ["ctrl+shift+."], "command": "insert_snippet", "args": {"contents": "<%=$0 %>"} }
]
link|improve this answer
Great shout - Thank you. Any idea how to get the cursor to be placed in the center of the tags for continued typing? – ChuckJHardy Jul 9 '11 at 15:43
2  
added cursor option too – lunixbochs Jul 9 '11 at 15:55
Great Stuff, thank you – ChuckJHardy Jul 9 '11 at 16:15
@lunixbochs Is there a way to set this up so that If I press the sequence again, it would remove the = ? – thatmiddleway Aug 25 '11 at 3:29
you can play with context - look at the default key bindings. I believe you can match regex before and after a section, so you could say "if my cursor is on =, with a <% and %> on either side, remove the =" – lunixbochs Sep 1 '11 at 19:39
feedback

Just found this, thought it might be helpful: https://github.com/eddorre/SublimeERB

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.