diff options
Diffstat (limited to '.vim/templates/html')
-rwxr-xr-x | .vim/templates/html/$ | 1 | ||||
-rwxr-xr-x | .vim/templates/html/dl | 6 | ||||
-rwxr-xr-x | .vim/templates/html/dt | 3 | ||||
-rwxr-xr-x | .vim/templates/html/em | 1 | ||||
-rwxr-xr-x | .vim/templates/html/form | 6 | ||||
-rwxr-xr-x | .vim/templates/html/html | 17 | ||||
-rwxr-xr-x | .vim/templates/html/input | 2 | ||||
-rwxr-xr-x | .vim/templates/html/li | 2 | ||||
-rwxr-xr-x | .vim/templates/html/ol | 5 | ||||
-rwxr-xr-x | .vim/templates/html/p | 4 | ||||
-rwxr-xr-x | .vim/templates/html/script | 4 | ||||
-rwxr-xr-x | .vim/templates/html/ul | 5 |
12 files changed, 56 insertions, 0 deletions
diff --git a/.vim/templates/html/$ b/.vim/templates/html/$ new file mode 100755 index 0000000..86f8609 --- /dev/null +++ b/.vim/templates/html/$ @@ -0,0 +1 @@ +document.getElementById("<++>").<++> diff --git a/.vim/templates/html/dl b/.vim/templates/html/dl new file mode 100755 index 0000000..c7bff2e --- /dev/null +++ b/.vim/templates/html/dl @@ -0,0 +1,6 @@ +<dl> + <dt><++></dt> + <dd><++></dd> + <++> +</dl> +<++> diff --git a/.vim/templates/html/dt b/.vim/templates/html/dt new file mode 100755 index 0000000..eee603e --- /dev/null +++ b/.vim/templates/html/dt @@ -0,0 +1,3 @@ +<dt><++></dt> +<dd><++></dd> +<++> diff --git a/.vim/templates/html/em b/.vim/templates/html/em new file mode 100755 index 0000000..53f4852 --- /dev/null +++ b/.vim/templates/html/em @@ -0,0 +1 @@ +<em><++></em><++> diff --git a/.vim/templates/html/form b/.vim/templates/html/form new file mode 100755 index 0000000..5985979 --- /dev/null +++ b/.vim/templates/html/form @@ -0,0 +1,6 @@ +<form method="<++>" action="<++>"> +<p> + <++> +</p> +</form> +<++> diff --git a/.vim/templates/html/html b/.vim/templates/html/html new file mode 100755 index 0000000..618a876 --- /dev/null +++ b/.vim/templates/html/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/.vim/templates/html/input b/.vim/templates/html/input new file mode 100755 index 0000000..670e334 --- /dev/null +++ b/.vim/templates/html/input @@ -0,0 +1,2 @@ +<input type="<++>" name="<++>" /> +<++> diff --git a/.vim/templates/html/li b/.vim/templates/html/li new file mode 100755 index 0000000..b04522c --- /dev/null +++ b/.vim/templates/html/li @@ -0,0 +1,2 @@ +<li><++></li> +<++> diff --git a/.vim/templates/html/ol b/.vim/templates/html/ol new file mode 100755 index 0000000..119e490 --- /dev/null +++ b/.vim/templates/html/ol @@ -0,0 +1,5 @@ +<ol> + <li><++></li> + <++> +</ol> +<++> diff --git a/.vim/templates/html/p b/.vim/templates/html/p new file mode 100755 index 0000000..92cd897 --- /dev/null +++ b/.vim/templates/html/p @@ -0,0 +1,4 @@ +<p> + <++> +</p> +<++> diff --git a/.vim/templates/html/script b/.vim/templates/html/script new file mode 100755 index 0000000..61aab67 --- /dev/null +++ b/.vim/templates/html/script @@ -0,0 +1,4 @@ +<script type="text/javascript"> + <++> +</script> +<++> diff --git a/.vim/templates/html/ul b/.vim/templates/html/ul new file mode 100755 index 0000000..f65ab78 --- /dev/null +++ b/.vim/templates/html/ul @@ -0,0 +1,5 @@ +<ul> + <li><++></li> + <++> +</ul> +<++> |