neosnippet.vim/autoload/neosnippet/snippets/eruby.snip

21 lines
355 B
Plaintext
Raw Normal View History

2012-02-02 04:33:35 +00:00
snippet ruby_print
abbr <%= %>
2012-10-30 08:53:14 +00:00
<%= ${1:TARGET} %>${2}
2012-02-02 04:33:35 +00:00
snippet ruby_code
abbr <% %>
2012-10-30 08:53:14 +00:00
<% ${1:TARGET} %>${2}
2012-02-02 04:33:35 +00:00
snippet ruby_print_nonl
abbr <%= -%>
2012-10-30 08:53:14 +00:00
<%= ${1:TARGET} -%>${2}
2012-02-02 04:33:35 +00:00
snippet ruby_code_nonl
abbr <% -%>
2012-10-30 08:53:14 +00:00
<% ${1:TARGET} -%>${2}
2012-02-02 04:33:35 +00:00
snippet comment
abbr <%# %>
2012-10-30 08:53:14 +00:00
<%# ${1:TARGET} %>${2}