mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-16 14:33:05 +00:00
8 lines
262 B
Plaintext
8 lines
262 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: Array
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: Array.new(10) { |i| .. }
|
|
## condition: "source.ruby"
|
|
# --
|
|
Array.new(${1:10}) { ${2:$(if (string= yas/text "") "" "|")}${2:i}${2:$(if (string= yas/text "") "" "|")} $0 }
|