mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 21:13:04 +00:00
add snippets for f90-mode from Li Zhu
This commit is contained in:
parent
87d81f8639
commit
57ae10bc4c
4
snippets/text-mode/f90-mode/au
Normal file
4
snippets/text-mode/f90-mode/au
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : automatic
|
||||||
|
# --
|
||||||
|
automatic $0
|
4
snippets/text-mode/f90-mode/bd
Normal file
4
snippets/text-mode/f90-mode/bd
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : block data
|
||||||
|
# --
|
||||||
|
block data $0
|
4
snippets/text-mode/f90-mode/c
Normal file
4
snippets/text-mode/f90-mode/c
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : continue
|
||||||
|
# --
|
||||||
|
continue $0
|
4
snippets/text-mode/f90-mode/ch
Normal file
4
snippets/text-mode/f90-mode/ch
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : character
|
||||||
|
# --
|
||||||
|
character $0
|
4
snippets/text-mode/f90-mode/cx
Normal file
4
snippets/text-mode/f90-mode/cx
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : complex
|
||||||
|
# --
|
||||||
|
complex $0
|
4
snippets/text-mode/f90-mode/dc
Normal file
4
snippets/text-mode/f90-mode/dc
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : double complex
|
||||||
|
# --
|
||||||
|
double complex $0
|
6
snippets/text-mode/f90-mode/do
Normal file
6
snippets/text-mode/f90-mode/do
Normal 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/text-mode/f90-mode/dp
Normal file
4
snippets/text-mode/f90-mode/dp
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : double precision
|
||||||
|
# --
|
||||||
|
double precision $0
|
4
snippets/text-mode/f90-mode/eq
Normal file
4
snippets/text-mode/f90-mode/eq
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : equivalence
|
||||||
|
# --
|
||||||
|
equivalence $0
|
4
snippets/text-mode/f90-mode/ib
Normal file
4
snippets/text-mode/f90-mode/ib
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : implicit byte
|
||||||
|
# --
|
||||||
|
implicit byte $0
|
4
snippets/text-mode/f90-mode/ic
Normal file
4
snippets/text-mode/f90-mode/ic
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : implicit complex
|
||||||
|
# --
|
||||||
|
implicit complex $0
|
4
snippets/text-mode/f90-mode/ich
Normal file
4
snippets/text-mode/f90-mode/ich
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : implicit character
|
||||||
|
# --
|
||||||
|
implicit character $0
|
6
snippets/text-mode/f90-mode/if
Normal file
6
snippets/text-mode/f90-mode/if
Normal 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/text-mode/f90-mode/ii
Normal file
4
snippets/text-mode/f90-mode/ii
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : implicit integer
|
||||||
|
# --
|
||||||
|
implicit integer $0
|
4
snippets/text-mode/f90-mode/il
Normal file
4
snippets/text-mode/f90-mode/il
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : implicit logical
|
||||||
|
# --
|
||||||
|
implicit logical $0
|
4
snippets/text-mode/f90-mode/in
Normal file
4
snippets/text-mode/f90-mode/in
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : implicit none
|
||||||
|
# --
|
||||||
|
implicit none
|
4
snippets/text-mode/f90-mode/inc
Normal file
4
snippets/text-mode/f90-mode/inc
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : include
|
||||||
|
# --
|
||||||
|
include $0
|
4
snippets/text-mode/f90-mode/intr
Normal file
4
snippets/text-mode/f90-mode/intr
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : intrinsic
|
||||||
|
# --
|
||||||
|
intrinsic $0
|
4
snippets/text-mode/f90-mode/ir
Normal file
4
snippets/text-mode/f90-mode/ir
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : implicit real
|
||||||
|
# --
|
||||||
|
implicit real $0
|
4
snippets/text-mode/f90-mode/l
Normal file
4
snippets/text-mode/f90-mode/l
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : logical
|
||||||
|
# --
|
||||||
|
logical $0
|
4
snippets/text-mode/f90-mode/pa
Normal file
4
snippets/text-mode/f90-mode/pa
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : parameter
|
||||||
|
# --
|
||||||
|
parameter $0
|
6
snippets/text-mode/f90-mode/pr
Normal file
6
snippets/text-mode/f90-mode/pr
Normal 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/text-mode/f90-mode/re
Normal file
4
snippets/text-mode/f90-mode/re
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : read (*,*)
|
||||||
|
# --
|
||||||
|
read (${1:*},${2:*}) $0
|
4
snippets/text-mode/f90-mode/st
Normal file
4
snippets/text-mode/f90-mode/st
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : structure
|
||||||
|
# --
|
||||||
|
structure $0
|
4
snippets/text-mode/f90-mode/su
Normal file
4
snippets/text-mode/f90-mode/su
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : subroutine
|
||||||
|
# --
|
||||||
|
subroutine $0
|
4
snippets/text-mode/f90-mode/wr
Normal file
4
snippets/text-mode/f90-mode/wr
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#contributor: Li Zhu <http://www.zhuli.name>
|
||||||
|
#name : write (*,*)
|
||||||
|
# --
|
||||||
|
write (${1:*},${2:*}) $0
|
Loading…
x
Reference in New Issue
Block a user