1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:30:07 +08:00
SpaceVim/bundle/neosnippet-snippets/neosnippets/eruby.snip
2020-06-13 14:06:35 +08:00

26 lines
440 B
Plaintext
Vendored

snippet ruby_print
abbr <%= %>
options word
<%= ${1:TARGET} %>${2}
snippet ruby_code
abbr <% %>
options word
<% ${1:TARGET} %>${2}
snippet ruby_print_nonl
abbr <%= -%>
options word
<%= ${1:TARGET} -%>${2}
snippet ruby_code_nonl
abbr <% -%>
options word
<% ${1:TARGET} -%>${2}
snippet comment
abbr <%# %>
options word
<%# ${1:TARGET} %>${2}