diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2012-04-24 23:29:38 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2012-04-24 23:29:38 +0200 |
commit | 7a6bb0f05e349068b0a89514f1da33d6d7de30a9 (patch) | |
tree | c202b81dfaf524e71e881c15aa509c45445a64b3 /emacs.d/lisp/yasnippet/snippets/html-mode/table | |
parent | 66b95ab46d870f41c12c489eb21c9c82846d6112 (diff) | |
download | dotfiles-7a6bb0f05e349068b0a89514f1da33d6d7de30a9.tar.gz dotfiles-7a6bb0f05e349068b0a89514f1da33d6d7de30a9.tar.xz dotfiles-7a6bb0f05e349068b0a89514f1da33d6d7de30a9.zip |
emacs.d/lisp/yasnippet: added yasnippet
Diffstat (limited to '')
4 files changed, 20 insertions, 0 deletions
diff --git a/emacs.d/lisp/yasnippet/snippets/html-mode/table/table b/emacs.d/lisp/yasnippet/snippets/html-mode/table/table new file mode 100644 index 0000000..ec972aa --- /dev/null +++ b/emacs.d/lisp/yasnippet/snippets/html-mode/table/table @@ -0,0 +1,6 @@ +#contributor : Jimmy Wu <frozenthrone88@gmail.com>
+#name : <table ...>...</table>
+# --
+<table width="$1" cellspacing="$2" cellpadding="$3" border="$4">
+ $0
+</table> diff --git a/emacs.d/lisp/yasnippet/snippets/html-mode/table/td b/emacs.d/lisp/yasnippet/snippets/html-mode/table/td new file mode 100644 index 0000000..87c18e3 --- /dev/null +++ b/emacs.d/lisp/yasnippet/snippets/html-mode/table/td @@ -0,0 +1,4 @@ +#contributor : Jimmy Wu <frozenthrone88@gmail.com>
+#name : <td>...</td>
+# --
+<td$1>$2</td> diff --git a/emacs.d/lisp/yasnippet/snippets/html-mode/table/th b/emacs.d/lisp/yasnippet/snippets/html-mode/table/th new file mode 100644 index 0000000..bce440b --- /dev/null +++ b/emacs.d/lisp/yasnippet/snippets/html-mode/table/th @@ -0,0 +1,4 @@ +#contributor : Jimmy Wu <frozenthrone88@gmail.com>
+#name : <th>...</th>
+# --
+<th$1>$2</th> diff --git a/emacs.d/lisp/yasnippet/snippets/html-mode/table/tr b/emacs.d/lisp/yasnippet/snippets/html-mode/table/tr new file mode 100644 index 0000000..e920c4f --- /dev/null +++ b/emacs.d/lisp/yasnippet/snippets/html-mode/table/tr @@ -0,0 +1,6 @@ +#contributor : Jimmy Wu <frozenthrone88@gmail.com>
+#name : <tr>...</tr>
+# --
+<tr>
+ $0
+</tr> |