mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-14 05:23:04 +00:00
8 lines
210 B
Plaintext
8 lines
210 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: slurp
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: Read File
|
|
# --
|
|
my \$${1:var};
|
|
{ local \$/ = undef; local *FILE; open FILE, "<${2:file}"; \$$1 = <FILE>; close FILE }
|