One of the things I like about Netbeans Ruby development is keyboard triggers.
For example, if you are in an erb template and you type:
licai
After you hit the tab key, this text gets replaced with:
<%= link_to "${1 default="link text..."}",
:controller => "${2 default="items"}",
:action => "${3 default="edit"}",
:id => ${4 default="@item"} %>
And then you can use the tab key to fill out each of the arguments.
I'm evaluating RadRails and I really miss this feature from Netbeans.
Is there anything similar in RadRails?