mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-14 21:43:04 +00:00
9 lines
230 B
Plaintext
9 lines
230 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: sub
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: subroutine
|
|
# --
|
|
subroutine ${1:name}
|
|
${2:argument type}, intent(${3:inout}) :: ${1/\w+\((.*)\)|.*/$1/}
|
|
$0
|
|
end subroutine ${1/(\w+).*/$1/} |