diff options
Diffstat (limited to '.emacs.d/mysnippets/text-mode/f90-mode')
26 files changed, 110 insertions, 0 deletions
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/au b/.emacs.d/mysnippets/text-mode/f90-mode/au new file mode 100644 index 0000000..1f0af73 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/au | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : automatic | ||
| 3 | # -- | ||
| 4 | automatic $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/bd b/.emacs.d/mysnippets/text-mode/f90-mode/bd new file mode 100644 index 0000000..8840102 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/bd | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : block data | ||
| 3 | # -- | ||
| 4 | block data $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/c b/.emacs.d/mysnippets/text-mode/f90-mode/c new file mode 100644 index 0000000..c7182e4 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/c | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : continue | ||
| 3 | # -- | ||
| 4 | continue $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/ch b/.emacs.d/mysnippets/text-mode/f90-mode/ch new file mode 100644 index 0000000..7e6b4cb --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/ch | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : character | ||
| 3 | # -- | ||
| 4 | character $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/cx b/.emacs.d/mysnippets/text-mode/f90-mode/cx new file mode 100644 index 0000000..8feb41e --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/cx | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : complex | ||
| 3 | # -- | ||
| 4 | complex $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/dc b/.emacs.d/mysnippets/text-mode/f90-mode/dc new file mode 100644 index 0000000..1992b1b --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/dc | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : double complex | ||
| 3 | # -- | ||
| 4 | double complex $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/do b/.emacs.d/mysnippets/text-mode/f90-mode/do new file mode 100644 index 0000000..2c117fd --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/do | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : do while (...) end do | ||
| 3 | # -- | ||
| 4 | do while (${1:condition}) | ||
| 5 | $0 | ||
| 6 | end do | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/dp b/.emacs.d/mysnippets/text-mode/f90-mode/dp new file mode 100644 index 0000000..ad014b7 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/dp | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : double precision | ||
| 3 | # -- | ||
| 4 | double precision $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/eq b/.emacs.d/mysnippets/text-mode/f90-mode/eq new file mode 100644 index 0000000..0c6d09f --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/eq | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : equivalence | ||
| 3 | # -- | ||
| 4 | equivalence $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/ib b/.emacs.d/mysnippets/text-mode/f90-mode/ib new file mode 100644 index 0000000..9275a12 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/ib | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : implicit byte | ||
| 3 | # -- | ||
| 4 | implicit byte $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/ic b/.emacs.d/mysnippets/text-mode/f90-mode/ic new file mode 100644 index 0000000..79842ea --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/ic | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : implicit complex | ||
| 3 | # -- | ||
| 4 | implicit complex $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/ich b/.emacs.d/mysnippets/text-mode/f90-mode/ich new file mode 100644 index 0000000..53c7f81 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/ich | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : implicit character | ||
| 3 | # -- | ||
| 4 | implicit character $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/if b/.emacs.d/mysnippets/text-mode/f90-mode/if new file mode 100644 index 0000000..b4fb526 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/if | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : if then end if | ||
| 3 | # -- | ||
| 4 | if ( ${1:condition} ) then | ||
| 5 | $0 | ||
| 6 | end if | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/ii b/.emacs.d/mysnippets/text-mode/f90-mode/ii new file mode 100644 index 0000000..4b1fee5 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/ii | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : implicit integer | ||
| 3 | # -- | ||
| 4 | implicit integer $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/il b/.emacs.d/mysnippets/text-mode/f90-mode/il new file mode 100644 index 0000000..8658af5 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/il | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : implicit logical | ||
| 3 | # -- | ||
| 4 | implicit logical $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/in b/.emacs.d/mysnippets/text-mode/f90-mode/in new file mode 100644 index 0000000..0c1d5e1 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/in | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : implicit none | ||
| 3 | # -- | ||
| 4 | implicit none | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/inc b/.emacs.d/mysnippets/text-mode/f90-mode/inc new file mode 100644 index 0000000..dd649c4 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/inc | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : include | ||
| 3 | # -- | ||
| 4 | include $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/intr b/.emacs.d/mysnippets/text-mode/f90-mode/intr new file mode 100644 index 0000000..147fffd --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/intr | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : intrinsic | ||
| 3 | # -- | ||
| 4 | intrinsic $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/ir b/.emacs.d/mysnippets/text-mode/f90-mode/ir new file mode 100644 index 0000000..fb37082 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/ir | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : implicit real | ||
| 3 | # -- | ||
| 4 | implicit real $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/l b/.emacs.d/mysnippets/text-mode/f90-mode/l new file mode 100644 index 0000000..8605d69 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/l | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : logical | ||
| 3 | # -- | ||
| 4 | logical $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/pa b/.emacs.d/mysnippets/text-mode/f90-mode/pa new file mode 100644 index 0000000..1b1b503 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/pa | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : parameter | ||
| 3 | # -- | ||
| 4 | parameter $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/pr b/.emacs.d/mysnippets/text-mode/f90-mode/pr new file mode 100644 index 0000000..e0f8baa --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/pr | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : program ... end program ... | ||
| 3 | # -- | ||
| 4 | program ${1:name} | ||
| 5 | $0 | ||
| 6 | end program ${1:name} | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/re b/.emacs.d/mysnippets/text-mode/f90-mode/re new file mode 100644 index 0000000..08c7ba0 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/re | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : read (*,*) | ||
| 3 | # -- | ||
| 4 | read (${1:*},${2:*}) $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/st b/.emacs.d/mysnippets/text-mode/f90-mode/st new file mode 100644 index 0000000..23ae7d0 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/st | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : structure | ||
| 3 | # -- | ||
| 4 | structure $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/su b/.emacs.d/mysnippets/text-mode/f90-mode/su new file mode 100644 index 0000000..d3857b8 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/su | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : subroutine | ||
| 3 | # -- | ||
| 4 | subroutine $0 | ||
diff --git a/.emacs.d/mysnippets/text-mode/f90-mode/wr b/.emacs.d/mysnippets/text-mode/f90-mode/wr new file mode 100644 index 0000000..1ac3eb9 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/f90-mode/wr | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor: Li Zhu <http://www.zhuli.name> | ||
| 2 | #name : write (*,*) | ||
| 3 | # -- | ||
| 4 | write (${1:*},${2:*}) $0 | ||
