mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-14 05:23:04 +00:00
9 lines
197 B
Plaintext
9 lines
197 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: nam
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: namespace :.. do .. end
|
|
## condition: "source.ruby"
|
|
# --
|
|
namespace :${1:${TM_FILENAME/\.\w+//}} do
|
|
$0
|
|
end |