summaryrefslogtreecommitdiff
path: root/f90-mode/su
diff options
context:
space:
mode:
Diffstat (limited to 'f90-mode/su')
-rw-r--r--f90-mode/su10
1 files changed, 10 insertions, 0 deletions
diff --git a/f90-mode/su b/f90-mode/su
new file mode 100644
index 0000000..63fea4a
--- /dev/null
+++ b/f90-mode/su
@@ -0,0 +1,10 @@
+# -*- mode: snippet -*-
+# contributor: Jonas Kalderstam <jonas@kalderstam.se>
+# name: subroutine ... end subroutine ...
+# key: su
+# --
+subroutine ${1:name} (${2:arg})
+ ${3:real, intent(in) :: $2}
+
+ $0
+end subroutine $1