summaryrefslogtreecommitdiffstats
path: root/emacs.d/snippets/text-mode/f90-mode
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/au4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/bd4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/c4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/ch4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/cx4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/dc4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/do6
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/dp4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/eq4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/ib4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/ic4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/ich4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/if6
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/ii4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/il4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/in4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/inc4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/intr4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/ir4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/l4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/pa4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/pr6
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/re4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/st4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/su4
-rw-r--r--emacs.d/snippets/text-mode/f90-mode/wr4
26 files changed, 110 insertions, 0 deletions
diff --git a/emacs.d/snippets/text-mode/f90-mode/au b/emacs.d/snippets/text-mode/f90-mode/au
new file mode 100644
index 0000000..1f0af73
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/au
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : automatic
+# --
+automatic $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/bd b/emacs.d/snippets/text-mode/f90-mode/bd
new file mode 100644
index 0000000..8840102
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/bd
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : block data
+# --
+block data $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/c b/emacs.d/snippets/text-mode/f90-mode/c
new file mode 100644
index 0000000..c7182e4
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/c
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : continue
+# --
+continue $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/ch b/emacs.d/snippets/text-mode/f90-mode/ch
new file mode 100644
index 0000000..7e6b4cb
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/ch
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : character
+# --
+character $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/cx b/emacs.d/snippets/text-mode/f90-mode/cx
new file mode 100644
index 0000000..8feb41e
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/cx
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : complex
+# --
+complex $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/dc b/emacs.d/snippets/text-mode/f90-mode/dc
new file mode 100644
index 0000000..1992b1b
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/dc
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : double complex
+# --
+double complex $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/do b/emacs.d/snippets/text-mode/f90-mode/do
new file mode 100644
index 0000000..2c117fd
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/do
@@ -0,0 +1,6 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : do while (...) end do
+# --
+do while (${1:condition})
+ $0
+end do
diff --git a/emacs.d/snippets/text-mode/f90-mode/dp b/emacs.d/snippets/text-mode/f90-mode/dp
new file mode 100644
index 0000000..ad014b7
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/dp
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : double precision
+# --
+double precision $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/eq b/emacs.d/snippets/text-mode/f90-mode/eq
new file mode 100644
index 0000000..0c6d09f
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/eq
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : equivalence
+# --
+equivalence $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/ib b/emacs.d/snippets/text-mode/f90-mode/ib
new file mode 100644
index 0000000..9275a12
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/ib
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : implicit byte
+# --
+implicit byte $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/ic b/emacs.d/snippets/text-mode/f90-mode/ic
new file mode 100644
index 0000000..79842ea
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/ic
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : implicit complex
+# --
+implicit complex $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/ich b/emacs.d/snippets/text-mode/f90-mode/ich
new file mode 100644
index 0000000..53c7f81
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/ich
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : implicit character
+# --
+implicit character $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/if b/emacs.d/snippets/text-mode/f90-mode/if
new file mode 100644
index 0000000..b4fb526
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/if
@@ -0,0 +1,6 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : if then end if
+# --
+if ( ${1:condition} ) then
+ $0
+end if
diff --git a/emacs.d/snippets/text-mode/f90-mode/ii b/emacs.d/snippets/text-mode/f90-mode/ii
new file mode 100644
index 0000000..4b1fee5
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/ii
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : implicit integer
+# --
+implicit integer $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/il b/emacs.d/snippets/text-mode/f90-mode/il
new file mode 100644
index 0000000..8658af5
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/il
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : implicit logical
+# --
+implicit logical $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/in b/emacs.d/snippets/text-mode/f90-mode/in
new file mode 100644
index 0000000..0c1d5e1
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/in
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : implicit none
+# --
+implicit none
diff --git a/emacs.d/snippets/text-mode/f90-mode/inc b/emacs.d/snippets/text-mode/f90-mode/inc
new file mode 100644
index 0000000..dd649c4
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/inc
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : include
+# --
+include $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/intr b/emacs.d/snippets/text-mode/f90-mode/intr
new file mode 100644
index 0000000..147fffd
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/intr
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : intrinsic
+# --
+intrinsic $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/ir b/emacs.d/snippets/text-mode/f90-mode/ir
new file mode 100644
index 0000000..fb37082
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/ir
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : implicit real
+# --
+implicit real $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/l b/emacs.d/snippets/text-mode/f90-mode/l
new file mode 100644
index 0000000..8605d69
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/l
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : logical
+# --
+logical $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/pa b/emacs.d/snippets/text-mode/f90-mode/pa
new file mode 100644
index 0000000..1b1b503
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/pa
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : parameter
+# --
+parameter $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/pr b/emacs.d/snippets/text-mode/f90-mode/pr
new file mode 100644
index 0000000..e0f8baa
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/pr
@@ -0,0 +1,6 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : program ... end program ...
+# --
+program ${1:name}
+ $0
+end program ${1:name}
diff --git a/emacs.d/snippets/text-mode/f90-mode/re b/emacs.d/snippets/text-mode/f90-mode/re
new file mode 100644
index 0000000..08c7ba0
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/re
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : read (*,*)
+# --
+read (${1:*},${2:*}) $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/st b/emacs.d/snippets/text-mode/f90-mode/st
new file mode 100644
index 0000000..23ae7d0
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/st
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : structure
+# --
+structure $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/su b/emacs.d/snippets/text-mode/f90-mode/su
new file mode 100644
index 0000000..d3857b8
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/su
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : subroutine
+# --
+subroutine $0
diff --git a/emacs.d/snippets/text-mode/f90-mode/wr b/emacs.d/snippets/text-mode/f90-mode/wr
new file mode 100644
index 0000000..1ac3eb9
--- /dev/null
+++ b/emacs.d/snippets/text-mode/f90-mode/wr
@@ -0,0 +1,4 @@
+#contributor: Li Zhu <http://www.zhuli.name>
+#name : write (*,*)
+# --
+write (${1:*},${2:*}) $0