Install yasnippet and vala-snippets packages
This commit is contained in:
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/bd
Normal file
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/bd
Normal file
@@ -0,0 +1,4 @@
|
||||
#contributor: Li Zhu <http://www.zhuli.name>
|
||||
#name : block data
|
||||
# --
|
||||
block data $0
|
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/c
Normal file
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/c
Normal file
@@ -0,0 +1,4 @@
|
||||
#contributor: Li Zhu <http://www.zhuli.name>
|
||||
#name : continue
|
||||
# --
|
||||
continue $0
|
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/ch
Normal file
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/ch
Normal file
@@ -0,0 +1,4 @@
|
||||
#contributor: Li Zhu <http://www.zhuli.name>
|
||||
#name : character
|
||||
# --
|
||||
character $0
|
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/cx
Normal file
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/cx
Normal file
@@ -0,0 +1,4 @@
|
||||
#contributor: Li Zhu <http://www.zhuli.name>
|
||||
#name : complex
|
||||
# --
|
||||
complex $0
|
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/dc
Normal file
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/dc
Normal file
@@ -0,0 +1,4 @@
|
||||
#contributor: Li Zhu <http://www.zhuli.name>
|
||||
#name : double complex
|
||||
# --
|
||||
double complex $0
|
8
elpa/yasnippet-20160924.2001/snippets/f90-mode/do
Normal file
8
elpa/yasnippet-20160924.2001/snippets/f90-mode/do
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# contributor: Jonas Kalderstam <jonas@kalderstam.se>
|
||||
# name: do ... end do ...
|
||||
# key: do
|
||||
# --
|
||||
do $1
|
||||
$0
|
||||
end do
|
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/dp
Normal file
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/dp
Normal file
@@ -0,0 +1,4 @@
|
||||
#contributor: Li Zhu <http://www.zhuli.name>
|
||||
#name : double precision
|
||||
# --
|
||||
double precision $0
|
8
elpa/yasnippet-20160924.2001/snippets/f90-mode/forall
Normal file
8
elpa/yasnippet-20160924.2001/snippets/f90-mode/forall
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# contributor: Jonas Kalderstam <jonas@kalderstam.se>
|
||||
# name: forall ... end forall ...
|
||||
# key: forall
|
||||
# --
|
||||
forall ($1)
|
||||
$0
|
||||
end forall
|
12
elpa/yasnippet-20160924.2001/snippets/f90-mode/function
Normal file
12
elpa/yasnippet-20160924.2001/snippets/f90-mode/function
Normal file
@@ -0,0 +1,12 @@
|
||||
# -*- mode: snippet -*-
|
||||
# contributor: Jonas Kalderstam <jonas@kalderstam.se>
|
||||
# name: function ... end function ...
|
||||
# key: function
|
||||
# --
|
||||
function ${1:name} (${2:arg})
|
||||
${3:real} :: $1
|
||||
${4:real, intent(in)} :: $2
|
||||
|
||||
$0
|
||||
|
||||
end function $1
|
6
elpa/yasnippet-20160924.2001/snippets/f90-mode/if
Normal file
6
elpa/yasnippet-20160924.2001/snippets/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
elpa/yasnippet-20160924.2001/snippets/f90-mode/in
Normal file
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/in
Normal file
@@ -0,0 +1,4 @@
|
||||
#contributor: Li Zhu <http://www.zhuli.name>
|
||||
#name : implicit none
|
||||
# --
|
||||
implicit none
|
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/inc
Normal file
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/inc
Normal file
@@ -0,0 +1,4 @@
|
||||
#contributor: Li Zhu <http://www.zhuli.name>
|
||||
#name : include
|
||||
# --
|
||||
include $0
|
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/intr
Normal file
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/intr
Normal file
@@ -0,0 +1,4 @@
|
||||
#contributor: Li Zhu <http://www.zhuli.name>
|
||||
#name : intrinsic
|
||||
# --
|
||||
intrinsic $0
|
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/l
Normal file
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/l
Normal file
@@ -0,0 +1,4 @@
|
||||
#contributor: Li Zhu <http://www.zhuli.name>
|
||||
#name : logical
|
||||
# --
|
||||
logical $0
|
12
elpa/yasnippet-20160924.2001/snippets/f90-mode/module
Normal file
12
elpa/yasnippet-20160924.2001/snippets/f90-mode/module
Normal file
@@ -0,0 +1,12 @@
|
||||
# -*- mode: snippet -*-
|
||||
# contributor: Jonas Kalderstam <jonas@kalderstam.se>
|
||||
# name: module ... end module ...
|
||||
# key: module
|
||||
# --
|
||||
module ${1:name}
|
||||
|
||||
contains
|
||||
|
||||
$0
|
||||
|
||||
end module $1
|
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/pa
Normal file
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/pa
Normal file
@@ -0,0 +1,4 @@
|
||||
#contributor: Li Zhu <http://www.zhuli.name>
|
||||
#name : parameter
|
||||
# --
|
||||
parameter $0
|
11
elpa/yasnippet-20160924.2001/snippets/f90-mode/program
Normal file
11
elpa/yasnippet-20160924.2001/snippets/f90-mode/program
Normal file
@@ -0,0 +1,11 @@
|
||||
# -*- mode: snippet -*-
|
||||
# contributor: Jonas Kalderstam <jonas@kalderstam.se>
|
||||
# name: program .. end program
|
||||
# key: program
|
||||
# --
|
||||
program ${1:name}
|
||||
${2:implicit none}
|
||||
|
||||
$0
|
||||
|
||||
end program $1
|
12
elpa/yasnippet-20160924.2001/snippets/f90-mode/puref
Normal file
12
elpa/yasnippet-20160924.2001/snippets/f90-mode/puref
Normal file
@@ -0,0 +1,12 @@
|
||||
# -*- mode: snippet -*-
|
||||
# contributor: Jonas Kalderstam <jonas@kalderstam.se>
|
||||
# name: pure function ... end function ...
|
||||
# key: pure func
|
||||
# --
|
||||
pure function ${1:name} (${2:arg})
|
||||
${3:real} :: $1
|
||||
${4:real, intent(in)} :: $2
|
||||
|
||||
$0
|
||||
|
||||
end function $1
|
10
elpa/yasnippet-20160924.2001/snippets/f90-mode/pures
Normal file
10
elpa/yasnippet-20160924.2001/snippets/f90-mode/pures
Normal file
@@ -0,0 +1,10 @@
|
||||
# -*- mode: snippet -*-
|
||||
# contributor: Jonas Kalderstam <jonas@kalderstam.se>
|
||||
# name: pure subroutine .. end subroutine
|
||||
# key: pure subroutine
|
||||
# --
|
||||
pure subroutine ${1:name} (${2:arg})
|
||||
${3:real, intent(in) :: $2}
|
||||
|
||||
$0
|
||||
end subroutine $1
|
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/re
Normal file
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/re
Normal file
@@ -0,0 +1,4 @@
|
||||
#contributor: Li Zhu <http://www.zhuli.name>
|
||||
#name : read (*,*)
|
||||
# --
|
||||
read (${1:*},${2:*}) $0
|
10
elpa/yasnippet-20160924.2001/snippets/f90-mode/subroutine
Normal file
10
elpa/yasnippet-20160924.2001/snippets/f90-mode/subroutine
Normal file
@@ -0,0 +1,10 @@
|
||||
# -*- mode: snippet -*-
|
||||
# contributor: Jonas Kalderstam <jonas@kalderstam.se>
|
||||
# name: subroutine .. end subroutine
|
||||
# key: subroutine
|
||||
# --
|
||||
subroutine ${1:name} (${2:arg})
|
||||
${3:real, intent(in) :: $2}
|
||||
|
||||
$0
|
||||
end subroutine $1
|
9
elpa/yasnippet-20160924.2001/snippets/f90-mode/until
Normal file
9
elpa/yasnippet-20160924.2001/snippets/f90-mode/until
Normal file
@@ -0,0 +1,9 @@
|
||||
# -*- mode: snippet -*-
|
||||
# contributor: Jonas Kalderstam <jonas@kalderstam.se>
|
||||
# name: until ... end until ...
|
||||
# key: until
|
||||
# --
|
||||
do
|
||||
$0
|
||||
if (${1:condition}) exit
|
||||
end do
|
9
elpa/yasnippet-20160924.2001/snippets/f90-mode/where
Normal file
9
elpa/yasnippet-20160924.2001/snippets/f90-mode/where
Normal file
@@ -0,0 +1,9 @@
|
||||
# -*- mode: snippet -*-
|
||||
# contributor: Jonas Kalderstam <jonas@kalderstam.se>
|
||||
# name: where ... end where ...
|
||||
# key: where
|
||||
# --
|
||||
|
||||
where (${1:condition})
|
||||
$0
|
||||
end where
|
8
elpa/yasnippet-20160924.2001/snippets/f90-mode/while
Normal file
8
elpa/yasnippet-20160924.2001/snippets/f90-mode/while
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# contributor: Jonas Kalderstam <jonas@kalderstam.se>
|
||||
# name: while ... end while ...
|
||||
# key: while
|
||||
# --
|
||||
do while (${1:condition})
|
||||
$0
|
||||
end do
|
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/wr
Normal file
4
elpa/yasnippet-20160924.2001/snippets/f90-mode/wr
Normal file
@@ -0,0 +1,4 @@
|
||||
#contributor: Li Zhu <http://www.zhuli.name>
|
||||
#name : write (*,*)
|
||||
# --
|
||||
write (${1:*},${2:*}) $0
|
Reference in New Issue
Block a user