]> git.madduck.net Git - etc/vim.git/blobdiff - .vim/snippets/html.snippets

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

use provided python snippets
[etc/vim.git] / .vim / snippets / html.snippets
deleted file mode 100644 (file)
index aefb9db1f26f447bdebfbba30a2038aea94bdd5e..0000000000000000000000000000000000000000
+++ /dev/null
@@ -1,190 +0,0 @@
-# Some useful Unicode entities
-# Non-Breaking Space
-snippet nbs
-       &nbsp;
-# ←
-snippet left
-       &#x2190;
-# →
-snippet right
-       &#x2192;
-# ↑
-snippet up
-       &#x2191;
-# ↓
-snippet down
-       &#x2193;
-# ↩
-snippet return
-       &#x21A9;
-# ⇤
-snippet backtab
-       &#x21E4;
-# ⇥
-snippet tab
-       &#x21E5;
-# ⇧
-snippet shift
-       &#x21E7;
-# ⌃
-snippet control
-       &#x2303;
-# ⌅
-snippet enter
-       &#x2305;
-# ⌘
-snippet command
-       &#x2318;
-# ⌥
-snippet option
-       &#x2325;
-# ⌦
-snippet delete
-       &#x2326;
-# ⌫
-snippet backspace
-       &#x232B;
-# ⎋
-snippet escape
-       &#x238B;
-# Generic Doctype
-snippet doctype HTML 4.01 Strict
-       <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""
-       "http://www.w3.org/TR/html4/strict.dtd">
-snippet doctype HTML 4.01 Transitional
-       <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""
-       "http://www.w3.org/TR/html4/loose.dtd">
-snippet doctype HTML 5
-       <!DOCTYPE HTML>
-snippet doctype XHTML 1.0 Frameset
-       <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
-       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-snippet doctype XHTML 1.0 Strict
-       <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
-       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-snippet doctype XHTML 1.0 Transitional
-       <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-snippet doctype XHTML 1.1
-       <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
-       "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-# HTML Doctype 4.01 Strict
-snippet docts
-       <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""
-       "http://www.w3.org/TR/html4/strict.dtd">
-# HTML Doctype 4.01 Transitional
-snippet doct
-       <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""
-       "http://www.w3.org/TR/html4/loose.dtd">
-# HTML Doctype 5
-snippet doct5
-       <!DOCTYPE HTML>
-# XHTML Doctype 1.0 Frameset
-snippet docxf
-       <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
-       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
-# XHTML Doctype 1.0 Strict
-snippet docxs
-       <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
-       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-# XHTML Doctype 1.0 Transitional
-snippet docxt
-       <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-# XHTML Doctype 1.1
-snippet docx
-       <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
-       "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-snippet html
-       <html>
-       ${1}
-       </html>
-snippet xhtml
-       <html xmlns="http://www.w3.org/1999/xhtml">
-       ${1}
-       </html>
-snippet body
-       <body>
-               ${1}
-       </body>
-snippet head
-       <head>
-               <meta http-equiv="content-type" content="text/html; charset=utf-8"`Close()`>
-
-               <title>${1:`substitute(Filename('', 'Page Title'), '^.', '\u&', '')`}</title>
-               ${2}
-       </head>
-snippet title
-       <title>${1:`substitute(Filename('', 'Page Title'), '^.', '\u&', '')`}</title>${2}
-snippet script
-       <script type="text/javascript" charset="utf-8">
-               ${1}
-       </script>${2}
-snippet scriptsrc
-       <script src="${1}.js" type="text/javascript" charset="utf-8"></script>${2}
-snippet style
-       <style type="text/css" media="${1:screen}">
-               ${2}
-       </style>${3}
-snippet base
-       <base href="${1}" target="${2}"`Close()`>
-snippet r
-       <br`Close()[1:]`>
-snippet div
-       <div id="${1:name}">
-               ${2}
-       </div>
-# Embed QT Movie
-snippet movie
-       <object width="$2" height="$3" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
-        codebase="http://www.apple.com/qtactivex/qtplugin.cab">
-               <param name="src" value="$1"`Close()`>
-               <param name="controller" value="$4"`Close()`>
-               <param name="autoplay" value="$5"`Close()`>
-               <embed src="${1:movie.mov}"
-                       width="${2:320}" height="${3:240}"
-                       controller="${4:true}" autoplay="${5:true}"
-                       scale="tofit" cache="true"
-                       pluginspage="http://www.apple.com/quicktime/download/"
-               `Close()[1:]`>
-       </object>${6}
-snippet fieldset
-       <fieldset id="$1">
-               <legend>${1:name}</legend>
-
-               ${3}
-       </fieldset>
-snippet form
-       <form action="${1:`Filename('$1_submit')`}" method="${2:get}" accept-charset="utf-8">
-               ${3}
-
-
-       <p><input type="submit" value="Continue &rarr;"`Close()`></p>
-       </form>
-snippet h1
-       <h1 id="${1:heading}">${2:$1}</h1>
-snippet input
-       <input type="${1:text/submit/hidden/button}" name="${2:some_name}" value="${3}"`Close()`>${4}
-snippet label
-       <label for="${2:$1}">${1:name}</label><input type="${3:text/submit/hidden/button}" name="${4:$2}" value="${5}" id="${6:$2}"`Close()`>${7}
-snippet link
-       <link rel="${1:stylesheet}" href="${2:/css/master.css}" type="text/css" media="${3:screen}" charset="utf-8"`Close()`>${4}
-snippet mailto
-       <a href="mailto:${1:joe@example.com}?subject=${2:feedback}">${3:email me}</a>
-snippet meta
-       <meta name="${1:name}" content="${2:content}"`Close()`>${3}
-snippet opt
-       <option value="${1:option}">${2:$1}</option>${3}
-snippet optt
-       <option>${1:option}</option>${2}
-snippet select
-       <select name="${1:some_name}" id="${2:$1}">
-               <option value="${3:option}">${4:$3}</option>
-       </select>${5}
-snippet table
-       <table border="${1:0}">
-               <tr><th>${2:Header}</th></tr>
-               <tr><th>${3:Data}</th></tr>
-       </table>${4}
-snippet textarea
-       <textarea name="${1:Name}" rows="${2:8}" cols="${3:40}">${4}</textarea>${5}
new file mode 120000 (symlink)
index 0000000000000000000000000000000000000000..4be37067e9db52cc499a18a97244dbea9061f93c
--- /dev/null
@@ -0,0 +1 @@
+/usr/share/vim/addons/snippets/html.snippets
\ No newline at end of file