summaryrefslogtreecommitdiff
path: root/.config/vim/templates/php
diff options
context:
space:
mode:
authorben <benjaminfranzke@googlemail.com>2010-02-25 20:24:41 +0100
committerben <benjaminfranzke@googlemail.com>2010-02-25 20:24:41 +0100
commitbd7323d84a593bfc31f0aeb112ba442886581257 (patch)
tree4202c1e515aeee77c20705d2c4925c1b0d9f029f /.config/vim/templates/php
parent571bdeb566dafd17ee4879db434e199d4eab00c9 (diff)
downloaddotfiles-bd7323d84a593bfc31f0aeb112ba442886581257.tar.gz
dotfiles-bd7323d84a593bfc31f0aeb112ba442886581257.tar.bz2
dotfiles-bd7323d84a593bfc31f0aeb112ba442886581257.zip
mv vim`s runtimepath to .config/vim instead .vim
Diffstat (limited to '.config/vim/templates/php')
-rwxr-xr-x.config/vim/templates/php/$1
-rwxr-xr-x.config/vim/templates/php/dl6
-rwxr-xr-x.config/vim/templates/php/dt3
-rwxr-xr-x.config/vim/templates/php/em1
-rwxr-xr-x.config/vim/templates/php/fore4
-rwxr-xr-x.config/vim/templates/php/form6
-rwxr-xr-x.config/vim/templates/php/html17
-rwxr-xr-x.config/vim/templates/php/input2
-rwxr-xr-x.config/vim/templates/php/li2
-rwxr-xr-x.config/vim/templates/php/ol5
-rwxr-xr-x.config/vim/templates/php/p4
-rwxr-xr-x.config/vim/templates/php/script4
-rwxr-xr-x.config/vim/templates/php/ul5
-rwxr-xr-x.config/vim/templates/php/while4
14 files changed, 64 insertions, 0 deletions
diff --git a/.config/vim/templates/php/$ b/.config/vim/templates/php/$
new file mode 100755
index 0000000..86f8609
--- /dev/null
+++ b/.config/vim/templates/php/$
@@ -0,0 +1 @@
+document.getElementById("<++>").<++>
diff --git a/.config/vim/templates/php/dl b/.config/vim/templates/php/dl
new file mode 100755
index 0000000..c7bff2e
--- /dev/null
+++ b/.config/vim/templates/php/dl
@@ -0,0 +1,6 @@
+<dl>
+ <dt><++></dt>
+ <dd><++></dd>
+ <++>
+</dl>
+<++>
diff --git a/.config/vim/templates/php/dt b/.config/vim/templates/php/dt
new file mode 100755
index 0000000..eee603e
--- /dev/null
+++ b/.config/vim/templates/php/dt
@@ -0,0 +1,3 @@
+<dt><++></dt>
+<dd><++></dd>
+<++>
diff --git a/.config/vim/templates/php/em b/.config/vim/templates/php/em
new file mode 100755
index 0000000..53f4852
--- /dev/null
+++ b/.config/vim/templates/php/em
@@ -0,0 +1 @@
+<em><++></em><++>
diff --git a/.config/vim/templates/php/fore b/.config/vim/templates/php/fore
new file mode 100755
index 0000000..5816e79
--- /dev/null
+++ b/.config/vim/templates/php/fore
@@ -0,0 +1,4 @@
+foreach(<++> as <++> => <++>)
+{
+ <++>
+}
diff --git a/.config/vim/templates/php/form b/.config/vim/templates/php/form
new file mode 100755
index 0000000..5985979
--- /dev/null
+++ b/.config/vim/templates/php/form
@@ -0,0 +1,6 @@
+<form method="<++>" action="<++>">
+<p>
+ <++>
+</p>
+</form>
+<++>
diff --git a/.config/vim/templates/php/html b/.config/vim/templates/php/html
new file mode 100755
index 0000000..618a876
--- /dev/null
+++ b/.config/vim/templates/php/html
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC
+ "-//W3C//DTD XHTML 1.1//EN"
+ "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <title><+title+></title>
+ <style type="text/css">
+ </style>
+ </head>
+ <body>
+ <h1><+title+></h1>
+ <++>
+ </body>
+</html>
diff --git a/.config/vim/templates/php/input b/.config/vim/templates/php/input
new file mode 100755
index 0000000..670e334
--- /dev/null
+++ b/.config/vim/templates/php/input
@@ -0,0 +1,2 @@
+<input type="<++>" name="<++>" />
+<++>
diff --git a/.config/vim/templates/php/li b/.config/vim/templates/php/li
new file mode 100755
index 0000000..b04522c
--- /dev/null
+++ b/.config/vim/templates/php/li
@@ -0,0 +1,2 @@
+<li><++></li>
+<++>
diff --git a/.config/vim/templates/php/ol b/.config/vim/templates/php/ol
new file mode 100755
index 0000000..119e490
--- /dev/null
+++ b/.config/vim/templates/php/ol
@@ -0,0 +1,5 @@
+<ol>
+ <li><++></li>
+ <++>
+</ol>
+<++>
diff --git a/.config/vim/templates/php/p b/.config/vim/templates/php/p
new file mode 100755
index 0000000..92cd897
--- /dev/null
+++ b/.config/vim/templates/php/p
@@ -0,0 +1,4 @@
+<p>
+ <++>
+</p>
+<++>
diff --git a/.config/vim/templates/php/script b/.config/vim/templates/php/script
new file mode 100755
index 0000000..61aab67
--- /dev/null
+++ b/.config/vim/templates/php/script
@@ -0,0 +1,4 @@
+<script type="text/javascript">
+ <++>
+</script>
+<++>
diff --git a/.config/vim/templates/php/ul b/.config/vim/templates/php/ul
new file mode 100755
index 0000000..f65ab78
--- /dev/null
+++ b/.config/vim/templates/php/ul
@@ -0,0 +1,5 @@
+<ul>
+ <li><++></li>
+ <++>
+</ul>
+<++>
diff --git a/.config/vim/templates/php/while b/.config/vim/templates/php/while
new file mode 100755
index 0000000..0e6e202
--- /dev/null
+++ b/.config/vim/templates/php/while
@@ -0,0 +1,4 @@
+while(<++>)
+{
+ <++>
+}