restructuring classic snippets dir to conform to new parenting specs

This commit is contained in:
capitaomorte
2009-12-25 14:05:23 +00:00
parent eebdf516b2
commit 4426d044f6
418 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1 @@
text-mode

4
snippets/f90-mode/au Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : automatic
# --
automatic $0

4
snippets/f90-mode/bd Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : block data
# --
block data $0

4
snippets/f90-mode/c Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : continue
# --
continue $0

4
snippets/f90-mode/ch Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : character
# --
character $0

4
snippets/f90-mode/cx Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : complex
# --
complex $0

4
snippets/f90-mode/dc Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : double complex
# --
double complex $0

6
snippets/f90-mode/do Normal file
View File

@@ -0,0 +1,6 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : do while (...) end do
# --
do while (${1:condition})
$0
end do

4
snippets/f90-mode/dp Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : double precision
# --
double precision $0

4
snippets/f90-mode/eq Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : equivalence
# --
equivalence $0

4
snippets/f90-mode/ib Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : implicit byte
# --
implicit byte $0

4
snippets/f90-mode/ic Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : implicit complex
# --
implicit complex $0

4
snippets/f90-mode/ich Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : implicit character
# --
implicit character $0

6
snippets/f90-mode/if Normal file
View File

@@ -0,0 +1,6 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : if then end if
# --
if ( ${1:condition} ) then
$0
end if

4
snippets/f90-mode/ii Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : implicit integer
# --
implicit integer $0

4
snippets/f90-mode/il Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : implicit logical
# --
implicit logical $0

4
snippets/f90-mode/in Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : implicit none
# --
implicit none

4
snippets/f90-mode/inc Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : include
# --
include $0

4
snippets/f90-mode/intr Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : intrinsic
# --
intrinsic $0

4
snippets/f90-mode/ir Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : implicit real
# --
implicit real $0

4
snippets/f90-mode/l Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : logical
# --
logical $0

4
snippets/f90-mode/pa Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : parameter
# --
parameter $0

6
snippets/f90-mode/pr Normal file
View File

@@ -0,0 +1,6 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : program ... end program ...
# --
program ${1:name}
$0
end program ${1:name}

4
snippets/f90-mode/re Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : read (*,*)
# --
read (${1:*},${2:*}) $0

4
snippets/f90-mode/st Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : structure
# --
structure $0

4
snippets/f90-mode/su Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : subroutine
# --
subroutine $0

4
snippets/f90-mode/wr Normal file
View File

@@ -0,0 +1,4 @@
#contributor: Li Zhu <http://www.zhuli.name>
#name : write (*,*)
# --
write (${1:*},${2:*}) $0