Initial commit.
This commit is contained in:
3
vim/snippets/ruby/ea/each do ... end.snippet
Executable file
3
vim/snippets/ruby/ea/each do ... end.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
each do |${1:elements}|
|
||||
${2}
|
||||
end
|
||||
1
vim/snippets/ruby/ea/each { ... }.snippet
Executable file
1
vim/snippets/ruby/ea/each { ... }.snippet
Executable file
@@ -0,0 +1 @@
|
||||
each { |${1:e}| ${2} }
|
||||
4
vim/snippets/ruby/ea/each_with_index do ... end.snippet
Executable file
4
vim/snippets/ruby/ea/each_with_index do ... end.snippet
Executable file
@@ -0,0 +1,4 @@
|
||||
each_with_index do |${1:element}, ${2:i}|
|
||||
${3}
|
||||
end
|
||||
|
||||
1
vim/snippets/ruby/ea/each_with_index { ... }.snippet
Executable file
1
vim/snippets/ruby/ea/each_with_index { ... }.snippet
Executable file
@@ -0,0 +1 @@
|
||||
each_with_index { |${1:e}, ${2:i}| ${3} }
|
||||
Reference in New Issue
Block a user