Last commit before tagging and releasing

This commit is contained in:
capitaomorte
2009-08-29 17:59:02 +00:00
parent 15c7703b5b
commit b8dcf61367
640 changed files with 4360 additions and 77 deletions

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: char
# contributor: Translated from TextMate Snippet
# name: Character
# --
character(len=$1${2:, kind=$3})${4:, ${5:attributes}} :: ${6:name}

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: typ
# contributor: Translated from TextMate Snippet
# name: Custom Type
# --
type(${1:type name})${2:, ${3:attributes}} :: ${4:name}

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: int
# contributor: Translated from TextMate Snippet
# name: Integer
# --
integer${1:(${2:kind})}${3:, ${4:attributes}} :: ${5:name}

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: log
# contributor: Translated from TextMate Snippet
# name: Logical
# --
logical${1:(${2:kind})}${3:, ${4:attributes}} :: ${5:name}

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: c
# contributor: Translated from TextMate Snippet
# name: Quick Character
# --
character(len=*) ::

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: t
# contributor: Translated from TextMate Snippet
# name: Quick Custom Type
# --
type(${1:type name}) ::

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: i
# contributor: Translated from TextMate Snippet
# name: Quick Integer
# --
integer ::

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: l
# contributor: Translated from TextMate Snippet
# name: Quick Logical
# --
logical ::

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: r
# contributor: Translated from TextMate Snippet
# name: Quick Real
# --
real ::

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: rea
# contributor: Translated from TextMate Snippet
# name: Real
# --
real${1:(${2:kind})}${3:, ${4:attributes}} :: ${5:name}

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: type
# contributor: Translated from TextMate Snippet
# name: Type Definition
# --
type ${1:type name}
$0
end type $1

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: data
# contributor: Translated from TextMate Snippet
# name: data
# --
data ${1:variable} / ${2:data} /

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: imp
# contributor: Translated from TextMate Snippet
# name: implicit none
# --
implicit none