From: Jim Myhrberg Date: Thu, 3 Nov 2011 20:51:31 +0000 (+0000) Subject: Keep snippet vars definitions in a single format across all snippets and documentation. X-Git-Url: https://code.delx.au/gnu-emacs-elpa/commitdiff_plain/09cc3eec2186cdcfa5d976c893fa23ea7fb25a7d Keep snippet vars definitions in a single format across all snippets and documentation. The format is: # var-name: value Previously snippets used a mixture of the following formatting: #var-name: value #var-name : value # var-name: value # var-name : value --- diff --git a/doc/faq.rst b/doc/faq.rst index ad1fa72e3..6eec67797 100644 --- a/doc/faq.rst +++ b/doc/faq.rst @@ -142,8 +142,8 @@ valid filename, ``lt.yasnippet`` for example, using ``<`` for the .. sourcecode:: text - #key: < - #name: <...> + # key: < + # name: <...> # -- <${1:div}>$0 diff --git a/doc/snippet-development.rst b/doc/snippet-development.rst index 993c55604..b55958a3a 100644 --- a/doc/snippet-development.rst +++ b/doc/snippet-development.rst @@ -81,8 +81,8 @@ Here's a typical example: .. sourcecode:: text - #contributor : pluskid - #name : __...__ + # contributor: pluskid + # name: __...__ # -- __${init}__ @@ -151,7 +151,7 @@ your hard work. You can then use: .. sourcecode:: text - # name : ASCII home + # name: ASCII home # expand-env: ((yas/indent-line 'fixed) (yas/wrap-around-region 'nil)) # -- welcome to my @@ -180,8 +180,8 @@ snippet. .. sourcecode:: text - #name :

...

- #binding: C-c C-c C-m + # name:

...

+ # binding: C-c C-c C-m # --

`(when yas/prefix "\n")`$0`(when yas/prefix "\n")`

diff --git a/snippets/c++-mode/beginend b/snippets/c++-mode/beginend index 590c708ed..4af416f01 100644 --- a/snippets/c++-mode/beginend +++ b/snippets/c++-mode/beginend @@ -1,4 +1,4 @@ -#name : v.begin(), v.end() +# name: v.begin(), v.end() # key: beginend # -- ${1:v}.begin(), $1.end \ No newline at end of file diff --git a/snippets/c++-mode/class b/snippets/c++-mode/class index 5289d9cf7..e313176e0 100644 --- a/snippets/c++-mode/class +++ b/snippets/c++-mode/class @@ -1,4 +1,4 @@ -#name : class ... { ... } +# name: class ... { ... } # key: class # -- class ${1:Name} diff --git a/snippets/c++-mode/ns b/snippets/c++-mode/ns index 0b736e78f..a3439642d 100644 --- a/snippets/c++-mode/ns +++ b/snippets/c++-mode/ns @@ -1,4 +1,4 @@ -#name : namespace ... +# name: namespace ... # key: ns # -- namespace \ No newline at end of file diff --git a/snippets/c++-mode/template b/snippets/c++-mode/template index d2ad159f5..ed36b08e0 100644 --- a/snippets/c++-mode/template +++ b/snippets/c++-mode/template @@ -1,4 +1,4 @@ -#name : template +# name: template # key: template # -- template \ No newline at end of file diff --git a/snippets/c++-mode/using b/snippets/c++-mode/using index 27ec885a6..f28937f59 100644 --- a/snippets/c++-mode/using +++ b/snippets/c++-mode/using @@ -1,4 +1,4 @@ -#name : using namespace ... +# name: using namespace ... # key: using # -- using namespace ${std}; diff --git a/snippets/c-mode/fopen b/snippets/c-mode/fopen index 0e48c21d9..b3339e429 100644 --- a/snippets/c-mode/fopen +++ b/snippets/c-mode/fopen @@ -1,4 +1,4 @@ -#name : FILE *fp = fopen(..., ...); +# name: FILE *fp = fopen(..., ...); # key: fopen # -- FILE *${fp} = fopen(${"file"}, "${r}"); \ No newline at end of file diff --git a/snippets/c-mode/printf b/snippets/c-mode/printf index 4006b7c16..035d07e0d 100644 --- a/snippets/c-mode/printf +++ b/snippets/c-mode/printf @@ -1,6 +1,6 @@ # -*- mode: snippet -*- -# name : printf -# contributor : joaotavora +# name: printf +# contributor: joaotavora # key: printf # -- printf ("${1:%s}\\n"${1:$(if (string-match "%" text) "," "\);") diff --git a/snippets/cc-mode/do b/snippets/cc-mode/do index 70e208a07..a42d27f5c 100644 --- a/snippets/cc-mode/do +++ b/snippets/cc-mode/do @@ -1,4 +1,4 @@ -#name : do { ... } while (...) +# name: do { ... } while (...) # key: do # -- do diff --git a/snippets/cc-mode/for b/snippets/cc-mode/for index 7343e58d7..1e1d4bfb5 100644 --- a/snippets/cc-mode/for +++ b/snippets/cc-mode/for @@ -1,4 +1,4 @@ -#name : for (...; ...; ...) { ... } +# name: for (...; ...; ...) { ... } # key: for # -- for (${1:int i = 0}; ${2:i < N}; ${3:++i}) diff --git a/snippets/cc-mode/if b/snippets/cc-mode/if index a52bee940..15ee160bc 100644 --- a/snippets/cc-mode/if +++ b/snippets/cc-mode/if @@ -1,4 +1,4 @@ -#name : if (...) { ... } +# name: if (...) { ... } # key: cc-modeif # -- if (${1:condition}) diff --git a/snippets/cc-mode/inc b/snippets/cc-mode/inc index 25bd8fe56..9c9ed7698 100644 --- a/snippets/cc-mode/inc +++ b/snippets/cc-mode/inc @@ -1,4 +1,4 @@ -#name : #include "..." +# name: #include "..." # key: inc # -- #include "$1" \ No newline at end of file diff --git a/snippets/cc-mode/inc.1 b/snippets/cc-mode/inc.1 index e367d5b36..649cbd977 100644 --- a/snippets/cc-mode/inc.1 +++ b/snippets/cc-mode/inc.1 @@ -1,4 +1,4 @@ -#name : #include <...> +# name: #include <...> # key: inc # -- #include <$1> \ No newline at end of file diff --git a/snippets/cc-mode/main b/snippets/cc-mode/main index 620de06c6..dab1cad1c 100644 --- a/snippets/cc-mode/main +++ b/snippets/cc-mode/main @@ -1,4 +1,4 @@ -#name: int main(argc, argv) { ... } +# name: int main(argc, argv) { ... } # key: main # -- int main(int argc, char *argv[]) diff --git a/snippets/cc-mode/once b/snippets/cc-mode/once index d0353299d..ea14f9ac2 100644 --- a/snippets/cc-mode/once +++ b/snippets/cc-mode/once @@ -1,4 +1,4 @@ -#name : #ifndef XXX; #define XXX; #endif +# name: #ifndef XXX; #define XXX; #endif # key: once # -- #ifndef ${1:_`(upcase (file-name-nondirectory (file-name-sans-extension (buffer-file-name))))`_H_} diff --git a/snippets/cc-mode/struct b/snippets/cc-mode/struct index aeacc3398..39ddfa80e 100644 --- a/snippets/cc-mode/struct +++ b/snippets/cc-mode/struct @@ -1,4 +1,4 @@ -#name : struct ... { ... } +# name: struct ... { ... } # key: struct # -- struct ${1:name} diff --git a/snippets/csharp-mode/attrib b/snippets/csharp-mode/attrib index ccc975450..f617ceed3 100644 --- a/snippets/csharp-mode/attrib +++ b/snippets/csharp-mode/attrib @@ -1,5 +1,5 @@ -#contributor : Alejandro Espinoza Esparza -#name : private attribute ....; +# contributor: Alejandro Espinoza Esparza +# name: private attribute ....; # key: attrib # -- /// diff --git a/snippets/csharp-mode/attrib.1 b/snippets/csharp-mode/attrib.1 index ba06d7689..ac967ad44 100644 --- a/snippets/csharp-mode/attrib.1 +++ b/snippets/csharp-mode/attrib.1 @@ -1,5 +1,5 @@ -#contributor : Alejandro Espinoza Esparza -#name : private attribute ....; public property ... ... { ... } +# contributor: Alejandro Espinoza Esparza +# name: private attribute ....; public property ... ... { ... } # key: attrib # -- /// diff --git a/snippets/csharp-mode/attrib.2 b/snippets/csharp-mode/attrib.2 index 2798ec912..20f126364 100644 --- a/snippets/csharp-mode/attrib.2 +++ b/snippets/csharp-mode/attrib.2 @@ -1,5 +1,5 @@ -#contributor : Alejandro Espinoza Esparza -#name : private _attribute ....; public Property ... ... { ... } +# contributor: Alejandro Espinoza Esparza +# name: private _attribute ....; public Property ... ... { ... } # key: attrib # -- /// diff --git a/snippets/csharp-mode/class b/snippets/csharp-mode/class index bea8a1e26..6c74c3792 100644 --- a/snippets/csharp-mode/class +++ b/snippets/csharp-mode/class @@ -1,5 +1,5 @@ -#contributor : Alejandro Espinoza Esparza -#name : class ... { ... } +# contributor: Alejandro Espinoza Esparza +# name: class ... { ... } # key: class # -- ${5:public} class ${1:Name} diff --git a/snippets/csharp-mode/comment b/snippets/csharp-mode/comment index 44f2fb389..562689be7 100644 --- a/snippets/csharp-mode/comment +++ b/snippets/csharp-mode/comment @@ -1,5 +1,5 @@ -#contributor : Alejandro Espinoza Esparza -#name : /// ... +# contributor: Alejandro Espinoza Esparza +# name: /// ... # key: comment # -- /// diff --git a/snippets/csharp-mode/comment.1 b/snippets/csharp-mode/comment.1 index dda243e9f..856189dab 100644 --- a/snippets/csharp-mode/comment.1 +++ b/snippets/csharp-mode/comment.1 @@ -1,5 +1,5 @@ -#contributor : Alejandro Espinoza Esparza -#name : /// ... +# contributor: Alejandro Espinoza Esparza +# name: /// ... # key: comment # -- /// $2 \ No newline at end of file diff --git a/snippets/csharp-mode/comment.2 b/snippets/csharp-mode/comment.2 index 34bc58c8c..e890f1c31 100644 --- a/snippets/csharp-mode/comment.2 +++ b/snippets/csharp-mode/comment.2 @@ -1,5 +1,5 @@ -#contributor : Alejandro Espinoza Esparza -#name : /// ... +# contributor: Alejandro Espinoza Esparza +# name: /// ... # key: comment # -- /// $1 \ No newline at end of file diff --git a/snippets/csharp-mode/comment.3 b/snippets/csharp-mode/comment.3 index 15f2e1a10..13e605732 100644 --- a/snippets/csharp-mode/comment.3 +++ b/snippets/csharp-mode/comment.3 @@ -1,5 +1,5 @@ -#contributor : Alejandro Espinoza Esparza -#name : /// ... +# contributor: Alejandro Espinoza Esparza +# name: /// ... # key: comment # -- /// $2 \ No newline at end of file diff --git a/snippets/csharp-mode/method b/snippets/csharp-mode/method index 7036471c7..e5ea46576 100644 --- a/snippets/csharp-mode/method +++ b/snippets/csharp-mode/method @@ -1,5 +1,5 @@ -#contributor : Alejandro Espinoza Esparza -#name : public void Method { ... } +# contributor: Alejandro Espinoza Esparza +# name: public void Method { ... } # key: method # -- /// diff --git a/snippets/csharp-mode/namespace b/snippets/csharp-mode/namespace index 4d8d15432..56c5d991b 100644 --- a/snippets/csharp-mode/namespace +++ b/snippets/csharp-mode/namespace @@ -1,5 +1,5 @@ -#contributor : Alejandro Espinoza Esparza -#name : namespace .. { ... } +# contributor: Alejandro Espinoza Esparza +# name: namespace .. { ... } # key: namespace # -- namespace $1 diff --git a/snippets/csharp-mode/prop b/snippets/csharp-mode/prop index 7d75deeb9..c711d23b0 100644 --- a/snippets/csharp-mode/prop +++ b/snippets/csharp-mode/prop @@ -1,5 +1,5 @@ -#contributor : Alejandro Espinoza Esparza -#name : property ... ... { ... } +# contributor: Alejandro Espinoza Esparza +# name: property ... ... { ... } # key: prop # -- /// diff --git a/snippets/csharp-mode/region b/snippets/csharp-mode/region index 498d153c9..a15573008 100644 --- a/snippets/csharp-mode/region +++ b/snippets/csharp-mode/region @@ -1,5 +1,5 @@ -#contributor : Alejandro Espinoza Esparza -#name : #region ... #endregion +# contributor: Alejandro Espinoza Esparza +# name: #region ... #endregion # key: region # -- #region $1 diff --git a/snippets/csharp-mode/using b/snippets/csharp-mode/using index 4556b8ce5..4103995ab 100644 --- a/snippets/csharp-mode/using +++ b/snippets/csharp-mode/using @@ -1,5 +1,5 @@ -#contributor : Alejandro Espinoza Esparza -#name : using ...; +# contributor: Alejandro Espinoza Esparza +# name: using ...; # key: using # -- using $1; \ No newline at end of file diff --git a/snippets/csharp-mode/using.1 b/snippets/csharp-mode/using.1 index fd80875d3..452b07b8a 100644 --- a/snippets/csharp-mode/using.1 +++ b/snippets/csharp-mode/using.1 @@ -1,5 +1,5 @@ -#contributor : Alejandro Espinoza Esparza -#name : using System; +# contributor: Alejandro Espinoza Esparza +# name: using System; # key: using # -- using System; \ No newline at end of file diff --git a/snippets/csharp-mode/using.2 b/snippets/csharp-mode/using.2 index ebcaadba4..d3a898077 100644 --- a/snippets/csharp-mode/using.2 +++ b/snippets/csharp-mode/using.2 @@ -1,5 +1,5 @@ -#contributor : Alejandro Espinoza Esparza -#name : using System....; +# contributor: Alejandro Espinoza Esparza +# name: using System....; # key: using # -- using System.$1; \ No newline at end of file diff --git a/snippets/css-mode/bg b/snippets/css-mode/bg index eb734d4c9..89597cb0d 100644 --- a/snippets/css-mode/bg +++ b/snippets/css-mode/bg @@ -1,4 +1,4 @@ -#name : background-color: ... +# name: background-color: ... # key: bg # -- background-color: #${1:DDD}; \ No newline at end of file diff --git a/snippets/css-mode/bg.1 b/snippets/css-mode/bg.1 index 9da6afc98..f74f6e486 100644 --- a/snippets/css-mode/bg.1 +++ b/snippets/css-mode/bg.1 @@ -1,4 +1,4 @@ -#name : background-image: ... +# name: background-image: ... # key: bg # -- background-image: url($1); \ No newline at end of file diff --git a/snippets/css-mode/bor b/snippets/css-mode/bor index 028d6c7a2..b2a1bf296 100644 --- a/snippets/css-mode/bor +++ b/snippets/css-mode/bor @@ -1,4 +1,4 @@ -#name : border size style color +# name: border size style color # key: bor # -- border: ${1:1px} ${2:solid} #${3:999}; \ No newline at end of file diff --git a/snippets/css-mode/cl b/snippets/css-mode/cl index efc004795..fcfd3455f 100644 --- a/snippets/css-mode/cl +++ b/snippets/css-mode/cl @@ -1,5 +1,5 @@ -#contributor : rejeep -#name : clear: ... +# contributor: rejeep +# name: clear: ... # key: cl # -- clear: $1; \ No newline at end of file diff --git a/snippets/css-mode/disp.block b/snippets/css-mode/disp.block index de9db5399..2571ba44a 100644 --- a/snippets/css-mode/disp.block +++ b/snippets/css-mode/disp.block @@ -1,5 +1,5 @@ -#contributor : rejeep -#name : display: block +# contributor: rejeep +# name: display: block # key: disp # -- display: block; \ No newline at end of file diff --git a/snippets/css-mode/disp.inline b/snippets/css-mode/disp.inline index a71184e06..0be30e317 100644 --- a/snippets/css-mode/disp.inline +++ b/snippets/css-mode/disp.inline @@ -1,5 +1,5 @@ -#contributor : rejeep -#name : display: inline +# contributor: rejeep +# name: display: inline # key: disp # -- display: inline; \ No newline at end of file diff --git a/snippets/css-mode/disp.none b/snippets/css-mode/disp.none index f5c5be480..58c40d0b0 100644 --- a/snippets/css-mode/disp.none +++ b/snippets/css-mode/disp.none @@ -1,5 +1,5 @@ -#contributor : rejeep -#name : display: none +# contributor: rejeep +# name: display: none # key: disp # -- display: none; \ No newline at end of file diff --git a/snippets/css-mode/ff b/snippets/css-mode/ff index 740d5fdeb..42189086c 100644 --- a/snippets/css-mode/ff +++ b/snippets/css-mode/ff @@ -1,5 +1,5 @@ -#contributor : rejeep -#name : font-family: ... +# contributor: rejeep +# name: font-family: ... # key: ff # -- font-family: $1; \ No newline at end of file diff --git a/snippets/css-mode/fs b/snippets/css-mode/fs index 6401be791..98a050a7d 100644 --- a/snippets/css-mode/fs +++ b/snippets/css-mode/fs @@ -1,5 +1,5 @@ -#contributor : rejeep -#name : font-size: ... +# contributor: rejeep +# name: font-size: ... # key: fs # -- font-size: ${12px}; \ No newline at end of file diff --git a/snippets/css-mode/mar.bottom b/snippets/css-mode/mar.bottom index 834cf6a51..6dbe9f839 100644 --- a/snippets/css-mode/mar.bottom +++ b/snippets/css-mode/mar.bottom @@ -1,5 +1,5 @@ -#contributor : rejeep -#name : margin-bottom: ... +# contributor: rejeep +# name: margin-bottom: ... # key: mar # -- margin-bottom: $1; \ No newline at end of file diff --git a/snippets/css-mode/mar.left b/snippets/css-mode/mar.left index 1d9fd6e80..0ba7b3bca 100644 --- a/snippets/css-mode/mar.left +++ b/snippets/css-mode/mar.left @@ -1,5 +1,5 @@ -#contributor : rejeep -#name : margin-left: ... +# contributor: rejeep +# name: margin-left: ... # key: mar # -- margin-left: $1; \ No newline at end of file diff --git a/snippets/css-mode/mar.mar b/snippets/css-mode/mar.mar index 833431c27..e45a33c10 100644 --- a/snippets/css-mode/mar.mar +++ b/snippets/css-mode/mar.mar @@ -1,5 +1,5 @@ -#contributor : rejeep -#name : margin: ... +# contributor: rejeep +# name: margin: ... # key: mar # -- margin: $1; \ No newline at end of file diff --git a/snippets/css-mode/mar.margin b/snippets/css-mode/mar.margin index dfafbaf9b..0716fc856 100644 --- a/snippets/css-mode/mar.margin +++ b/snippets/css-mode/mar.margin @@ -1,5 +1,5 @@ -#contributor : rejeep -#name : margin top right bottom left +# contributor: rejeep +# name: margin top right bottom left # key: mar # -- margin: ${top} ${right} ${bottom} ${left}; \ No newline at end of file diff --git a/snippets/css-mode/mar.right b/snippets/css-mode/mar.right index d940968ff..49f05d7c2 100644 --- a/snippets/css-mode/mar.right +++ b/snippets/css-mode/mar.right @@ -1,5 +1,5 @@ -#contributor : rejeep -#name : margin-right: ... +# contributor: rejeep +# name: margin-right: ... # key: mar # -- margin-right: $1; \ No newline at end of file diff --git a/snippets/css-mode/mar.top b/snippets/css-mode/mar.top index 13fa0c17f..168f45818 100644 --- a/snippets/css-mode/mar.top +++ b/snippets/css-mode/mar.top @@ -1,5 +1,5 @@ -#contributor : rejeep -#name : margin-top: ... +# contributor: rejeep +# name: margin-top: ... # key: mar # -- margin-top: $1; \ No newline at end of file diff --git a/snippets/css-mode/pad.bottom b/snippets/css-mode/pad.bottom index 5770e46ec..3e4c6651d 100644 --- a/snippets/css-mode/pad.bottom +++ b/snippets/css-mode/pad.bottom @@ -1,5 +1,5 @@ -#contributor : rejeep -#name : padding-bottom: ... +# contributor: rejeep +# name: padding-bottom: ... # key: pad # -- padding-bottom: $1; \ No newline at end of file diff --git a/snippets/css-mode/pad.left b/snippets/css-mode/pad.left index 5fe2bc69a..5e49b28a5 100644 --- a/snippets/css-mode/pad.left +++ b/snippets/css-mode/pad.left @@ -1,5 +1,5 @@ -#contributor : rejeep -#name : padding-left: ... +# contributor: rejeep +# name: padding-left: ... # key: pad # -- padding-left: $1; \ No newline at end of file diff --git a/snippets/css-mode/pad.pad b/snippets/css-mode/pad.pad index 46734475c..ce81c36e8 100644 --- a/snippets/css-mode/pad.pad +++ b/snippets/css-mode/pad.pad @@ -1,5 +1,5 @@ -#contributor : rejeep -#name : padding: ... +# contributor: rejeep +# name: padding: ... # key: pad # -- padding: $1; \ No newline at end of file diff --git a/snippets/css-mode/pad.padding b/snippets/css-mode/pad.padding index ae038e4ee..0be7890c3 100644 --- a/snippets/css-mode/pad.padding +++ b/snippets/css-mode/pad.padding @@ -1,5 +1,5 @@ -#contributor : rejeep -#name : padding: top right bottom left +# contributor: rejeep +# name: padding: top right bottom left # key: pad # -- padding: ${top} ${right} ${bottom} ${left}; \ No newline at end of file diff --git a/snippets/css-mode/pad.right b/snippets/css-mode/pad.right index 7488ababf..a244b9478 100644 --- a/snippets/css-mode/pad.right +++ b/snippets/css-mode/pad.right @@ -1,5 +1,5 @@ -#contributor : rejeep -#name : padding-right: ... +# contributor: rejeep +# name: padding-right: ... # key: pad # -- padding-right: $1; \ No newline at end of file diff --git a/snippets/css-mode/pad.top b/snippets/css-mode/pad.top index a30355db1..d315e46d4 100644 --- a/snippets/css-mode/pad.top +++ b/snippets/css-mode/pad.top @@ -1,5 +1,5 @@ -#contributor : rejeep -#name : padding-top: ... +# contributor: rejeep +# name: padding-top: ... # key: pad # -- padding-top: $1; \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/add-hook.yasnippet b/snippets/emacs-lisp-mode/add-hook.yasnippet index 77605af04..04f1f01ff 100755 --- a/snippets/emacs-lisp-mode/add-hook.yasnippet +++ b/snippets/emacs-lisp-mode/add-hook.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: add-hook -#key: add-hook -#key: ah +# contributor: Xah Lee (XahLee.org) +# name: add-hook +# key: add-hook +# key: ah # -- (add-hook HOOK$0 FUNCTION) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/and.yasnippet b/snippets/emacs-lisp-mode/and.yasnippet index 6502b6a8e..cfc7dfca3 100755 --- a/snippets/emacs-lisp-mode/and.yasnippet +++ b/snippets/emacs-lisp-mode/and.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: and -#key: and -#key: a +# contributor: Xah Lee (XahLee.org) +# name: and +# key: and +# key: a # -- (and $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/append.yasnippet b/snippets/emacs-lisp-mode/append.yasnippet index 0b8639da5..585dfdccc 100755 --- a/snippets/emacs-lisp-mode/append.yasnippet +++ b/snippets/emacs-lisp-mode/append.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: append -#key: append +# contributor: Xah Lee (XahLee.org) +# name: append +# key: append # -- (append $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/apply.yasnippet b/snippets/emacs-lisp-mode/apply.yasnippet index 1963f2965..2cfe6957e 100755 --- a/snippets/emacs-lisp-mode/apply.yasnippet +++ b/snippets/emacs-lisp-mode/apply.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: apply -#key: apply +# contributor: Xah Lee (XahLee.org) +# name: apply +# key: apply # -- (apply $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/aref.yasnippet b/snippets/emacs-lisp-mode/aref.yasnippet index 867ef0aeb..0df3b8ea0 100755 --- a/snippets/emacs-lisp-mode/aref.yasnippet +++ b/snippets/emacs-lisp-mode/aref.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: aref -#key: aref +# contributor: Xah Lee (XahLee.org) +# name: aref +# key: aref # -- (aref ARRAY$0 INDEX) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/aset.yasnippet b/snippets/emacs-lisp-mode/aset.yasnippet index 9402dc9cc..0813e7eaf 100755 --- a/snippets/emacs-lisp-mode/aset.yasnippet +++ b/snippets/emacs-lisp-mode/aset.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: aset -#key: aset +# contributor: Xah Lee (XahLee.org) +# name: aset +# key: aset # -- (aset ARRAY$0 IDX NEWELT) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/assq.yasnippet b/snippets/emacs-lisp-mode/assq.yasnippet index d7c525795..61609c8ff 100755 --- a/snippets/emacs-lisp-mode/assq.yasnippet +++ b/snippets/emacs-lisp-mode/assq.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: assq -#key: assq +# contributor: Xah Lee (XahLee.org) +# name: assq +# key: assq # -- (assq KEY$0 LIST) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/autoload.yasnippet b/snippets/emacs-lisp-mode/autoload.yasnippet index c4974826e..20052f556 100755 --- a/snippets/emacs-lisp-mode/autoload.yasnippet +++ b/snippets/emacs-lisp-mode/autoload.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: autoload -#key: autoload +# contributor: Xah Lee (XahLee.org) +# name: autoload +# key: autoload # -- (autoload 'FUNCNAME$0 "FILENAME" &optional "DOCSTRING" INTERACTIVE TYPE) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/backward-char.yasnippet b/snippets/emacs-lisp-mode/backward-char.yasnippet index 296cf97a4..782b35ceb 100755 --- a/snippets/emacs-lisp-mode/backward-char.yasnippet +++ b/snippets/emacs-lisp-mode/backward-char.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: backward-char -#key: backward-char -#key: bc +# contributor: Xah Lee (XahLee.org) +# name: backward-char +# key: backward-char +# key: bc # -- (backward-char $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/beginning-of-line.yasnippet b/snippets/emacs-lisp-mode/beginning-of-line.yasnippet index 7dfd32c8d..cd7585903 100755 --- a/snippets/emacs-lisp-mode/beginning-of-line.yasnippet +++ b/snippets/emacs-lisp-mode/beginning-of-line.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: beginning-of-line -#key: beginning-of-line -#key: bol +# contributor: Xah Lee (XahLee.org) +# name: beginning-of-line +# key: beginning-of-line +# key: bol # -- (beginning-of-line) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/bounds-of-thing-at-point.yasnippet b/snippets/emacs-lisp-mode/bounds-of-thing-at-point.yasnippet index 6d645b65b..507457c61 100755 --- a/snippets/emacs-lisp-mode/bounds-of-thing-at-point.yasnippet +++ b/snippets/emacs-lisp-mode/bounds-of-thing-at-point.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: bounds-of-thing-at-point -#key: bounds-of-thing-at-point -#key: botap +# contributor: Xah Lee (XahLee.org) +# name: bounds-of-thing-at-point +# key: bounds-of-thing-at-point +# key: botap # -- (bounds-of-thing-at-point '$0) ; symbol, list, sexp, defun, filename, url, email, word, sentence, whitespace, line, page ... \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/buffer-file-name.yasnippet b/snippets/emacs-lisp-mode/buffer-file-name.yasnippet index d98318247..726c5080e 100755 --- a/snippets/emacs-lisp-mode/buffer-file-name.yasnippet +++ b/snippets/emacs-lisp-mode/buffer-file-name.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: buffer-file-name -#key: buffer-file-name -#key: bfn +# contributor: Xah Lee (XahLee.org) +# name: buffer-file-name +# key: buffer-file-name +# key: bfn # -- (buffer-file-name) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/buffer-modified-p.yasnippet b/snippets/emacs-lisp-mode/buffer-modified-p.yasnippet index f3ca3aa6b..87ff31ecc 100755 --- a/snippets/emacs-lisp-mode/buffer-modified-p.yasnippet +++ b/snippets/emacs-lisp-mode/buffer-modified-p.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: buffer-modified-p -#key: buffer-modified-p -#key: bmp +# contributor: Xah Lee (XahLee.org) +# name: buffer-modified-p +# key: buffer-modified-p +# key: bmp # -- (buffer-modified-p $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/buffer-substring-no-properties.yasnippet b/snippets/emacs-lisp-mode/buffer-substring-no-properties.yasnippet index adb8270d6..1b040196b 100755 --- a/snippets/emacs-lisp-mode/buffer-substring-no-properties.yasnippet +++ b/snippets/emacs-lisp-mode/buffer-substring-no-properties.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: buffer-substring-no-properties -#key: buffer-substring-no-properties -#key: bsnp +# contributor: Xah Lee (XahLee.org) +# name: buffer-substring-no-properties +# key: buffer-substring-no-properties +# key: bsnp # -- (buffer-substring-no-properties START$0 END) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/buffer-substring.yasnippet b/snippets/emacs-lisp-mode/buffer-substring.yasnippet index 0c08119e1..002a4f0c0 100755 --- a/snippets/emacs-lisp-mode/buffer-substring.yasnippet +++ b/snippets/emacs-lisp-mode/buffer-substring.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: buffer-substring -#key: buffer-substring -#key: bs +# contributor: Xah Lee (XahLee.org) +# name: buffer-substring +# key: buffer-substring +# key: bs # -- (buffer-substring START$0 END) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/car.yasnippet b/snippets/emacs-lisp-mode/car.yasnippet index 09ff8e472..5406d9431 100755 --- a/snippets/emacs-lisp-mode/car.yasnippet +++ b/snippets/emacs-lisp-mode/car.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: car -#key: car +# contributor: Xah Lee (XahLee.org) +# name: car +# key: car # -- (car $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/cdr.yasnippet b/snippets/emacs-lisp-mode/cdr.yasnippet index 404d1d2bb..0afd31fff 100755 --- a/snippets/emacs-lisp-mode/cdr.yasnippet +++ b/snippets/emacs-lisp-mode/cdr.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: cdr -#key: cdr +# contributor: Xah Lee (XahLee.org) +# name: cdr +# key: cdr # -- (cdr $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/concat.yasnippet b/snippets/emacs-lisp-mode/concat.yasnippet index b94cfeb7c..42436b4d5 100755 --- a/snippets/emacs-lisp-mode/concat.yasnippet +++ b/snippets/emacs-lisp-mode/concat.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: concat -#key: concat +# contributor: Xah Lee (XahLee.org) +# name: concat +# key: concat # -- (concat $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/cond.yasnippet b/snippets/emacs-lisp-mode/cond.yasnippet index 39274144b..4c40194a8 100755 --- a/snippets/emacs-lisp-mode/cond.yasnippet +++ b/snippets/emacs-lisp-mode/cond.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: cond -#key: cond +# contributor: Xah Lee (XahLee.org) +# name: cond +# key: cond # -- (cond (CONDITION$0 BODY) diff --git a/snippets/emacs-lisp-mode/condition-case.yasnippet b/snippets/emacs-lisp-mode/condition-case.yasnippet index da794dd7e..80d09ad31 100755 --- a/snippets/emacs-lisp-mode/condition-case.yasnippet +++ b/snippets/emacs-lisp-mode/condition-case.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: condition-case -#key: condition-case -#key: cc +# contributor: Xah Lee (XahLee.org) +# name: condition-case +# key: condition-case +# key: cc # -- (condition-case $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/cons.yasnippet b/snippets/emacs-lisp-mode/cons.yasnippet index f1869195a..a0f90ce80 100755 --- a/snippets/emacs-lisp-mode/cons.yasnippet +++ b/snippets/emacs-lisp-mode/cons.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: cons -#key: cons +# contributor: Xah Lee (XahLee.org) +# name: cons +# key: cons # -- (cons $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/consp.yasnippet b/snippets/emacs-lisp-mode/consp.yasnippet index 2b2ce5c9c..f4b3f99e9 100755 --- a/snippets/emacs-lisp-mode/consp.yasnippet +++ b/snippets/emacs-lisp-mode/consp.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: consp -#key: consp +# contributor: Xah Lee (XahLee.org) +# name: consp +# key: consp # -- (consp $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/copy-directory.yasnippet b/snippets/emacs-lisp-mode/copy-directory.yasnippet index b2516d529..4c47d2f8c 100755 --- a/snippets/emacs-lisp-mode/copy-directory.yasnippet +++ b/snippets/emacs-lisp-mode/copy-directory.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: copy-directory -#key: copy-directory -#key: cd +# contributor: Xah Lee (XahLee.org) +# name: copy-directory +# key: copy-directory +# key: cd # -- (copy-directory $0 NEWNAME &optional KEEP-TIME PARENTS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/copy-file.yasnippet b/snippets/emacs-lisp-mode/copy-file.yasnippet index b952b1658..021c60e52 100755 --- a/snippets/emacs-lisp-mode/copy-file.yasnippet +++ b/snippets/emacs-lisp-mode/copy-file.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: copy-file -#key: copy-file -#key: cf +# contributor: Xah Lee (XahLee.org) +# name: copy-file +# key: copy-file +# key: cf # -- (copy-file FILE$0 NEWNAME &optional OK-IF-ALREADY-EXISTS KEEP-TIME PRESERVE-UID-GID) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/current-buffer.yasnippet b/snippets/emacs-lisp-mode/current-buffer.yasnippet index b25a48ab2..59859be11 100755 --- a/snippets/emacs-lisp-mode/current-buffer.yasnippet +++ b/snippets/emacs-lisp-mode/current-buffer.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: current-buffer -#key: current-buffer -#key: cb +# contributor: Xah Lee (XahLee.org) +# name: current-buffer +# key: current-buffer +# key: cb # -- (current-buffer) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/custom-autoload.yasnippet b/snippets/emacs-lisp-mode/custom-autoload.yasnippet index b5dbb711d..7961f9e8f 100755 --- a/snippets/emacs-lisp-mode/custom-autoload.yasnippet +++ b/snippets/emacs-lisp-mode/custom-autoload.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: custom-autoload -#key: custom-autoload -#key: ca +# contributor: Xah Lee (XahLee.org) +# name: custom-autoload +# key: custom-autoload +# key: ca # -- (custom-autoload$0 SYMBOL LOAD &optional NOSET) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/defalias.yasnippet b/snippets/emacs-lisp-mode/defalias.yasnippet index 7c3998a6e..56d58553f 100755 --- a/snippets/emacs-lisp-mode/defalias.yasnippet +++ b/snippets/emacs-lisp-mode/defalias.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: defalias -#key: defalias +# contributor: Xah Lee (XahLee.org) +# name: defalias +# key: defalias # -- (defalias 'SYMBOL$0 'DEFINITION &optional DOCSTRING) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/defcustom.yasnippet b/snippets/emacs-lisp-mode/defcustom.yasnippet index 25ecbaa4a..db709be03 100755 --- a/snippets/emacs-lisp-mode/defcustom.yasnippet +++ b/snippets/emacs-lisp-mode/defcustom.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: defcustom -#key: defcustom +# contributor: Xah Lee (XahLee.org) +# name: defcustom +# key: defcustom # -- (defcustom $0 VALUE "DOC" &optional ARGS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/define-key.yasnippet b/snippets/emacs-lisp-mode/define-key.yasnippet index e483a51d0..a04e5d765 100755 --- a/snippets/emacs-lisp-mode/define-key.yasnippet +++ b/snippets/emacs-lisp-mode/define-key.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: define-key -#key: define-key -#key: dk +# contributor: Xah Lee (XahLee.org) +# name: define-key +# key: define-key +# key: dk # -- (define-key KEYMAPNAME$0 (kbd "M-b") 'FUNCNAME) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/defsubst.yasnippet b/snippets/emacs-lisp-mode/defsubst.yasnippet index 5ce90337f..5535af139 100755 --- a/snippets/emacs-lisp-mode/defsubst.yasnippet +++ b/snippets/emacs-lisp-mode/defsubst.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: defsubst -#key: defsubst +# contributor: Xah Lee (XahLee.org) +# name: defsubst +# key: defsubst # -- (defsubst $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/defun.yasnippet b/snippets/emacs-lisp-mode/defun.yasnippet index 3937d6d45..0f3644b19 100755 --- a/snippets/emacs-lisp-mode/defun.yasnippet +++ b/snippets/emacs-lisp-mode/defun.yasnippet @@ -1,7 +1,7 @@ -#contributor: Xah Lee (XahLee.org) -#name: defun -#key: defun -#key: d +# contributor: Xah Lee (XahLee.org) +# name: defun +# key: defun +# key: d # -- (defun $1 () "DOCSTRING" diff --git a/snippets/emacs-lisp-mode/defvar.yasnippet b/snippets/emacs-lisp-mode/defvar.yasnippet index bf5fa8173..1148472fc 100755 --- a/snippets/emacs-lisp-mode/defvar.yasnippet +++ b/snippets/emacs-lisp-mode/defvar.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: defvar -#key: defvar +# contributor: Xah Lee (XahLee.org) +# name: defvar +# key: defvar # -- (defvar $0 &optional INITVALUE "DOCSTRING") \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/delete-char.yasnippet b/snippets/emacs-lisp-mode/delete-char.yasnippet index da983bd94..02585fafb 100755 --- a/snippets/emacs-lisp-mode/delete-char.yasnippet +++ b/snippets/emacs-lisp-mode/delete-char.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: delete-char -#key: delete-char -#key: dc +# contributor: Xah Lee (XahLee.org) +# name: delete-char +# key: delete-char +# key: dc # -- (delete-char $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/delete-directory.yasnippet b/snippets/emacs-lisp-mode/delete-directory.yasnippet index 59f0838a4..5033240fe 100755 --- a/snippets/emacs-lisp-mode/delete-directory.yasnippet +++ b/snippets/emacs-lisp-mode/delete-directory.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: delete-directory -#key: delete-directory -#key: dd +# contributor: Xah Lee (XahLee.org) +# name: delete-directory +# key: delete-directory +# key: dd # -- (delete-directory $0 &optional RECURSIVE) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/delete-file.yasnippet b/snippets/emacs-lisp-mode/delete-file.yasnippet index dfbd4f109..6b47f0d04 100755 --- a/snippets/emacs-lisp-mode/delete-file.yasnippet +++ b/snippets/emacs-lisp-mode/delete-file.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: delete-file -#key: delete-file -#key: df +# contributor: Xah Lee (XahLee.org) +# name: delete-file +# key: delete-file +# key: df # -- (delete-file $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/delete-region.yasnippet b/snippets/emacs-lisp-mode/delete-region.yasnippet index 7c753d25d..054b40d8b 100755 --- a/snippets/emacs-lisp-mode/delete-region.yasnippet +++ b/snippets/emacs-lisp-mode/delete-region.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: delete-region -#key: delete-region -#key: dr +# contributor: Xah Lee (XahLee.org) +# name: delete-region +# key: delete-region +# key: dr # -- (delete-region $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/directory-files.yasnippet b/snippets/emacs-lisp-mode/directory-files.yasnippet index df301a227..449e0162e 100755 --- a/snippets/emacs-lisp-mode/directory-files.yasnippet +++ b/snippets/emacs-lisp-mode/directory-files.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: directory-files -#key: directory-files -#key: df +# contributor: Xah Lee (XahLee.org) +# name: directory-files +# key: directory-files +# key: df # -- (directory-files $0 &optional FULL MATCH NOSORT) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/dolist.yasnippet b/snippets/emacs-lisp-mode/dolist.yasnippet index ea660159a..13be2fb31 100755 --- a/snippets/emacs-lisp-mode/dolist.yasnippet +++ b/snippets/emacs-lisp-mode/dolist.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: dolist -#key: dolist +# contributor: Xah Lee (XahLee.org) +# name: dolist +# key: dolist # -- (dolist $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/end-of-line.yasnippet b/snippets/emacs-lisp-mode/end-of-line.yasnippet index f8a2d9fca..dcefc48dd 100755 --- a/snippets/emacs-lisp-mode/end-of-line.yasnippet +++ b/snippets/emacs-lisp-mode/end-of-line.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: end-of-line -#key: end-of-line -#key: eol +# contributor: Xah Lee (XahLee.org) +# name: end-of-line +# key: end-of-line +# key: eol # -- (end-of-line) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/eq.yasnippet b/snippets/emacs-lisp-mode/eq.yasnippet index 3d29f5251..b05f968a1 100755 --- a/snippets/emacs-lisp-mode/eq.yasnippet +++ b/snippets/emacs-lisp-mode/eq.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: eq -#key: eq +# contributor: Xah Lee (XahLee.org) +# name: eq +# key: eq # -- (eq $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/equal.yasnippet b/snippets/emacs-lisp-mode/equal.yasnippet index 7b0dd58a9..f2dec4739 100755 --- a/snippets/emacs-lisp-mode/equal.yasnippet +++ b/snippets/emacs-lisp-mode/equal.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: equal -#key: equal +# contributor: Xah Lee (XahLee.org) +# name: equal +# key: equal # -- (equal $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/error.yasnippet b/snippets/emacs-lisp-mode/error.yasnippet index 48bf6896f..93314ddca 100755 --- a/snippets/emacs-lisp-mode/error.yasnippet +++ b/snippets/emacs-lisp-mode/error.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: error -#key: error +# contributor: Xah Lee (XahLee.org) +# name: error +# key: error # -- (error "$0" &optional ARGS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/expand-file-name.yasnippet b/snippets/emacs-lisp-mode/expand-file-name.yasnippet index 8e6c596bb..c8b52534e 100755 --- a/snippets/emacs-lisp-mode/expand-file-name.yasnippet +++ b/snippets/emacs-lisp-mode/expand-file-name.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: expand-file-name -#key: expand-file-name -#key: efn +# contributor: Xah Lee (XahLee.org) +# name: expand-file-name +# key: expand-file-name +# key: efn # -- (expand-file-name $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/f.yasnippet b/snippets/emacs-lisp-mode/f.yasnippet index 011a60619..220a1affc 100755 --- a/snippets/emacs-lisp-mode/f.yasnippet +++ b/snippets/emacs-lisp-mode/f.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: format -#key: format +# contributor: Xah Lee (XahLee.org) +# name: format +# key: format # -- (format "$0" &optional OBJECTS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/fboundp.yasnippet b/snippets/emacs-lisp-mode/fboundp.yasnippet index 0212c2dac..f6e89071a 100755 --- a/snippets/emacs-lisp-mode/fboundp.yasnippet +++ b/snippets/emacs-lisp-mode/fboundp.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: fboundp -#key: fboundp +# contributor: Xah Lee (XahLee.org) +# name: fboundp +# key: fboundp # -- (fboundp '$0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/file-name-directory.yasnippet b/snippets/emacs-lisp-mode/file-name-directory.yasnippet index e7fb5c0a4..1264a25aa 100755 --- a/snippets/emacs-lisp-mode/file-name-directory.yasnippet +++ b/snippets/emacs-lisp-mode/file-name-directory.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: file-name-directory -#key: file-name-directory -#key: fnd +# contributor: Xah Lee (XahLee.org) +# name: file-name-directory +# key: file-name-directory +# key: fnd # -- (file-name-directory $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/file-name-extension.yasnippet b/snippets/emacs-lisp-mode/file-name-extension.yasnippet index 38dc0c4d5..87886d419 100755 --- a/snippets/emacs-lisp-mode/file-name-extension.yasnippet +++ b/snippets/emacs-lisp-mode/file-name-extension.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: file-name-extension -#key: file-name-extension -#key: fne +# contributor: Xah Lee (XahLee.org) +# name: file-name-extension +# key: file-name-extension +# key: fne # -- (file-name-extension $0 &optional PERIOD) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/file-name-nondirectory.yasnippet b/snippets/emacs-lisp-mode/file-name-nondirectory.yasnippet index 7310becdc..0a824a5ad 100755 --- a/snippets/emacs-lisp-mode/file-name-nondirectory.yasnippet +++ b/snippets/emacs-lisp-mode/file-name-nondirectory.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: file-name-nondirectory -#key: file-name-nondirectory -#key: fnn +# contributor: Xah Lee (XahLee.org) +# name: file-name-nondirectory +# key: file-name-nondirectory +# key: fnn # -- (file-name-nondirectory $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/file-name-sans-extension.yasnippet b/snippets/emacs-lisp-mode/file-name-sans-extension.yasnippet index 8b18db5ed..491c7e4b5 100755 --- a/snippets/emacs-lisp-mode/file-name-sans-extension.yasnippet +++ b/snippets/emacs-lisp-mode/file-name-sans-extension.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: file-name-sans-extension -#key: file-name-sans-extension -#key: fnse +# contributor: Xah Lee (XahLee.org) +# name: file-name-sans-extension +# key: file-name-sans-extension +# key: fnse # -- (file-name-sans-extension $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/file-relative-name.yasnippet b/snippets/emacs-lisp-mode/file-relative-name.yasnippet index 39b68079d..8f773aa60 100755 --- a/snippets/emacs-lisp-mode/file-relative-name.yasnippet +++ b/snippets/emacs-lisp-mode/file-relative-name.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: file-relative-name -#key: file-relative-name -#key: frn +# contributor: Xah Lee (XahLee.org) +# name: file-relative-name +# key: file-relative-name +# key: frn # -- (file-relative-name $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/find-file.yasnippet b/snippets/emacs-lisp-mode/find-file.yasnippet index 8038e8312..7a64537ae 100755 --- a/snippets/emacs-lisp-mode/find-file.yasnippet +++ b/snippets/emacs-lisp-mode/find-file.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: find-file -#key: find-file -#key: ff +# contributor: Xah Lee (XahLee.org) +# name: find-file +# key: find-file +# key: ff # -- (find-file $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/format.yasnippet b/snippets/emacs-lisp-mode/format.yasnippet index 011a60619..220a1affc 100755 --- a/snippets/emacs-lisp-mode/format.yasnippet +++ b/snippets/emacs-lisp-mode/format.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: format -#key: format +# contributor: Xah Lee (XahLee.org) +# name: format +# key: format # -- (format "$0" &optional OBJECTS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/forward-char.yasnippet b/snippets/emacs-lisp-mode/forward-char.yasnippet index 1298e98cd..198cca28b 100755 --- a/snippets/emacs-lisp-mode/forward-char.yasnippet +++ b/snippets/emacs-lisp-mode/forward-char.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: forward-char -#key: forward-char -#key: fc +# contributor: Xah Lee (XahLee.org) +# name: forward-char +# key: forward-char +# key: fc # -- (forward-char $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/forward-line.yasnippet b/snippets/emacs-lisp-mode/forward-line.yasnippet index 37d94d705..10456d3ad 100755 --- a/snippets/emacs-lisp-mode/forward-line.yasnippet +++ b/snippets/emacs-lisp-mode/forward-line.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: forward-line -#key: forward-line -#key: fl +# contributor: Xah Lee (XahLee.org) +# name: forward-line +# key: forward-line +# key: fl # -- (forward-line $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/funcall.yasnippet b/snippets/emacs-lisp-mode/funcall.yasnippet index fb486bcb2..4f67029ee 100755 --- a/snippets/emacs-lisp-mode/funcall.yasnippet +++ b/snippets/emacs-lisp-mode/funcall.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: funcall -#key: funcall +# contributor: Xah Lee (XahLee.org) +# name: funcall +# key: funcall # -- (funcall $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/function.yasnippet b/snippets/emacs-lisp-mode/function.yasnippet index cbebaf030..3ff84fcd9 100755 --- a/snippets/emacs-lisp-mode/function.yasnippet +++ b/snippets/emacs-lisp-mode/function.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: function -#key: function +# contributor: Xah Lee (XahLee.org) +# name: function +# key: function # -- (function $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/get.yasnippet b/snippets/emacs-lisp-mode/get.yasnippet index 9b29658c9..df20ccee6 100755 --- a/snippets/emacs-lisp-mode/get.yasnippet +++ b/snippets/emacs-lisp-mode/get.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: get -#key: get +# contributor: Xah Lee (XahLee.org) +# name: get +# key: get # -- (get SYMBOL$0 PROPNAME) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/global-set-key.yasnippet b/snippets/emacs-lisp-mode/global-set-key.yasnippet index 8629f2734..889505324 100755 --- a/snippets/emacs-lisp-mode/global-set-key.yasnippet +++ b/snippets/emacs-lisp-mode/global-set-key.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: global-set-key -#key: global-set-key -#key: gsk +# contributor: Xah Lee (XahLee.org) +# name: global-set-key +# key: global-set-key +# key: gsk # -- (global-set-key (kbd "C-$0") 'COMMAND) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/goto-char.yasnippet b/snippets/emacs-lisp-mode/goto-char.yasnippet index 7cb8d2b6d..1caa88e3d 100755 --- a/snippets/emacs-lisp-mode/goto-char.yasnippet +++ b/snippets/emacs-lisp-mode/goto-char.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: goto-char -#key: goto-char -#key: gc +# contributor: Xah Lee (XahLee.org) +# name: goto-char +# key: goto-char +# key: gc # -- (goto-char $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/if.yasnippet b/snippets/emacs-lisp-mode/if.yasnippet index c797755a8..db90fe352 100755 --- a/snippets/emacs-lisp-mode/if.yasnippet +++ b/snippets/emacs-lisp-mode/if.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: if -#key: if +# contributor: Xah Lee (XahLee.org) +# name: if +# key: if # -- (if $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/insert-file-contents.yasnippet b/snippets/emacs-lisp-mode/insert-file-contents.yasnippet index ffdd1540c..6189cfaf7 100755 --- a/snippets/emacs-lisp-mode/insert-file-contents.yasnippet +++ b/snippets/emacs-lisp-mode/insert-file-contents.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: insert-file-contents -#key: insert-file-contents -#key: ifc +# contributor: Xah Lee (XahLee.org) +# name: insert-file-contents +# key: insert-file-contents +# key: ifc # -- (insert-file-contents $0 &optional VISIT BEG END REPLACE) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/insert.yasnippet b/snippets/emacs-lisp-mode/insert.yasnippet index ae5943d45..b3de98c17 100755 --- a/snippets/emacs-lisp-mode/insert.yasnippet +++ b/snippets/emacs-lisp-mode/insert.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: insert -#key: insert -#key: i +# contributor: Xah Lee (XahLee.org) +# name: insert +# key: insert +# key: i # -- (insert $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/interactive.yasnippet b/snippets/emacs-lisp-mode/interactive.yasnippet index f97389218..f63e4899e 100755 --- a/snippets/emacs-lisp-mode/interactive.yasnippet +++ b/snippets/emacs-lisp-mode/interactive.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: interactive -#key: interactive +# contributor: Xah Lee (XahLee.org) +# name: interactive +# key: interactive # -- (interactive) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/kbd.yasnippet b/snippets/emacs-lisp-mode/kbd.yasnippet index be91b0877..811ef6b29 100755 --- a/snippets/emacs-lisp-mode/kbd.yasnippet +++ b/snippets/emacs-lisp-mode/kbd.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: kbd -#key: kbd +# contributor: Xah Lee (XahLee.org) +# name: kbd +# key: kbd # -- (kbd "$0") \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/kill-buffer.yasnippet b/snippets/emacs-lisp-mode/kill-buffer.yasnippet index 491a73b59..615f74de8 100755 --- a/snippets/emacs-lisp-mode/kill-buffer.yasnippet +++ b/snippets/emacs-lisp-mode/kill-buffer.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: kill-buffer -#key: kill-buffer -#key: kb +# contributor: Xah Lee (XahLee.org) +# name: kill-buffer +# key: kill-buffer +# key: kb # -- (kill-buffer $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/lambda.yasnippet b/snippets/emacs-lisp-mode/lambda.yasnippet index ae4062f67..63ac70aca 100755 --- a/snippets/emacs-lisp-mode/lambda.yasnippet +++ b/snippets/emacs-lisp-mode/lambda.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: lambda -#key: lambda +# contributor: Xah Lee (XahLee.org) +# name: lambda +# key: lambda # -- (lambda ($0) "DOCSTRING" (interactive) BODY) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/length.yasnippet b/snippets/emacs-lisp-mode/length.yasnippet index 46a379b4c..ecd1b6d8e 100755 --- a/snippets/emacs-lisp-mode/length.yasnippet +++ b/snippets/emacs-lisp-mode/length.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: length -#key: length +# contributor: Xah Lee (XahLee.org) +# name: length +# key: length # -- (length $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/let.yasnippet b/snippets/emacs-lisp-mode/let.yasnippet index 76e991ea9..e19825499 100755 --- a/snippets/emacs-lisp-mode/let.yasnippet +++ b/snippets/emacs-lisp-mode/let.yasnippet @@ -1,7 +1,7 @@ -#contributor: Xah Lee (XahLee.org) -#name: let -#key: let -#key: l +# contributor: Xah Lee (XahLee.org) +# name: let +# key: let +# key: l # -- (let ($1 ) $0 diff --git a/snippets/emacs-lisp-mode/line-beginning-position.yasnippet b/snippets/emacs-lisp-mode/line-beginning-position.yasnippet index 647158b20..5edd9e334 100755 --- a/snippets/emacs-lisp-mode/line-beginning-position.yasnippet +++ b/snippets/emacs-lisp-mode/line-beginning-position.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: line-beginning-position -#key: line-beginning-position -#key: lbp +# contributor: Xah Lee (XahLee.org) +# name: line-beginning-position +# key: line-beginning-position +# key: lbp # -- (line-beginning-position) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/line-end-position.yasnippet b/snippets/emacs-lisp-mode/line-end-position.yasnippet index f3a4f4cc4..a8fa3d085 100755 --- a/snippets/emacs-lisp-mode/line-end-position.yasnippet +++ b/snippets/emacs-lisp-mode/line-end-position.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: line-end-position -#key: line-end-position -#key: lep +# contributor: Xah Lee (XahLee.org) +# name: line-end-position +# key: line-end-position +# key: lep # -- (line-end-position) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/list.yasnippet b/snippets/emacs-lisp-mode/list.yasnippet index 11be961bf..b8532a9d0 100755 --- a/snippets/emacs-lisp-mode/list.yasnippet +++ b/snippets/emacs-lisp-mode/list.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: list -#key: list +# contributor: Xah Lee (XahLee.org) +# name: list +# key: list # -- (list $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/looking-at.yasnippet b/snippets/emacs-lisp-mode/looking-at.yasnippet index 83741dd9b..da85f0191 100755 --- a/snippets/emacs-lisp-mode/looking-at.yasnippet +++ b/snippets/emacs-lisp-mode/looking-at.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: looking-at -#key: looking-at -#key: la +# contributor: Xah Lee (XahLee.org) +# name: looking-at +# key: looking-at +# key: la # -- (looking-at $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/make-directory.yasnippet b/snippets/emacs-lisp-mode/make-directory.yasnippet index 6c6ee64fa..4f83d946b 100755 --- a/snippets/emacs-lisp-mode/make-directory.yasnippet +++ b/snippets/emacs-lisp-mode/make-directory.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: make-directory -#key: make-directory -#key: md +# contributor: Xah Lee (XahLee.org) +# name: make-directory +# key: make-directory +# key: md # -- (make-directory $0 &optional PARENTS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/make-local-variable.yasnippet b/snippets/emacs-lisp-mode/make-local-variable.yasnippet index 06e0ff4ea..223fa5575 100755 --- a/snippets/emacs-lisp-mode/make-local-variable.yasnippet +++ b/snippets/emacs-lisp-mode/make-local-variable.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: make-local-variable -#key: make-local-variable -#key: mlv +# contributor: Xah Lee (XahLee.org) +# name: make-local-variable +# key: make-local-variable +# key: mlv # -- (make-local-variable $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/mapc.yasnippet b/snippets/emacs-lisp-mode/mapc.yasnippet index f244f64b0..e8b0c5289 100755 --- a/snippets/emacs-lisp-mode/mapc.yasnippet +++ b/snippets/emacs-lisp-mode/mapc.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: mapc -#key: mapc +# contributor: Xah Lee (XahLee.org) +# name: mapc +# key: mapc # -- (mapc '$0 SEQUENCE) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/mapcar.yasnippet b/snippets/emacs-lisp-mode/mapcar.yasnippet index 25bbd5d29..1f398ec74 100755 --- a/snippets/emacs-lisp-mode/mapcar.yasnippet +++ b/snippets/emacs-lisp-mode/mapcar.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: mapcar -#key: mapcar +# contributor: Xah Lee (XahLee.org) +# name: mapcar +# key: mapcar # -- (mapcar $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/match-beginning.yasnippet b/snippets/emacs-lisp-mode/match-beginning.yasnippet index b3ecc75db..840760294 100755 --- a/snippets/emacs-lisp-mode/match-beginning.yasnippet +++ b/snippets/emacs-lisp-mode/match-beginning.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: match-beginning -#key: match-beginning -#key: mb +# contributor: Xah Lee (XahLee.org) +# name: match-beginning +# key: match-beginning +# key: mb # -- (match-beginning N$0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/match-end.yasnippet b/snippets/emacs-lisp-mode/match-end.yasnippet index d263499cc..60923a414 100755 --- a/snippets/emacs-lisp-mode/match-end.yasnippet +++ b/snippets/emacs-lisp-mode/match-end.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: match-end -#key: match-end -#key: me +# contributor: Xah Lee (XahLee.org) +# name: match-end +# key: match-end +# key: me # -- (match-end N$0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/match-string.yasnippet b/snippets/emacs-lisp-mode/match-string.yasnippet index 5c74e9dd2..83eb5fe28 100755 --- a/snippets/emacs-lisp-mode/match-string.yasnippet +++ b/snippets/emacs-lisp-mode/match-string.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: match-string -#key: match-string -#key: ms +# contributor: Xah Lee (XahLee.org) +# name: match-string +# key: match-string +# key: ms # -- (match-string $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/memq.yasnippet b/snippets/emacs-lisp-mode/memq.yasnippet index f0f7cba85..513fd2516 100755 --- a/snippets/emacs-lisp-mode/memq.yasnippet +++ b/snippets/emacs-lisp-mode/memq.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: memq -#key: memq +# contributor: Xah Lee (XahLee.org) +# name: memq +# key: memq # -- (memq ELT$0 LIST) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/message.yasnippet b/snippets/emacs-lisp-mode/message.yasnippet index ea3009e15..38bbab62a 100755 --- a/snippets/emacs-lisp-mode/message.yasnippet +++ b/snippets/emacs-lisp-mode/message.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: message -#key: message -#key: m +# contributor: Xah Lee (XahLee.org) +# name: message +# key: message +# key: m # -- (message "FORMATSTRING$0" &optional ARGS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/not.yasnippet b/snippets/emacs-lisp-mode/not.yasnippet index 083bcd7e3..80d3694a3 100755 --- a/snippets/emacs-lisp-mode/not.yasnippet +++ b/snippets/emacs-lisp-mode/not.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: not -#key: not -#key: n +# contributor: Xah Lee (XahLee.org) +# name: not +# key: not +# key: n # -- (not $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/nth.yasnippet b/snippets/emacs-lisp-mode/nth.yasnippet index b3880a207..de81812a6 100755 --- a/snippets/emacs-lisp-mode/nth.yasnippet +++ b/snippets/emacs-lisp-mode/nth.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: nth -#key: nth +# contributor: Xah Lee (XahLee.org) +# name: nth +# key: nth # -- (nth N$0 LIST) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/null.yasnippet b/snippets/emacs-lisp-mode/null.yasnippet index 9d451ec99..6b4010bd9 100755 --- a/snippets/emacs-lisp-mode/null.yasnippet +++ b/snippets/emacs-lisp-mode/null.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: null -#key: null +# contributor: Xah Lee (XahLee.org) +# name: null +# key: null # -- (null $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/number-to-string.yasnippet b/snippets/emacs-lisp-mode/number-to-string.yasnippet index 42eccb780..c57a93022 100755 --- a/snippets/emacs-lisp-mode/number-to-string.yasnippet +++ b/snippets/emacs-lisp-mode/number-to-string.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: number-to-string -#key: number-to-string -#key: nts +# contributor: Xah Lee (XahLee.org) +# name: number-to-string +# key: number-to-string +# key: nts # -- (number-to-string $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/or.yasnippet b/snippets/emacs-lisp-mode/or.yasnippet index 046218cb4..86eea3260 100755 --- a/snippets/emacs-lisp-mode/or.yasnippet +++ b/snippets/emacs-lisp-mode/or.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: or -#key: or -#key: o +# contributor: Xah Lee (XahLee.org) +# name: or +# key: or +# key: o # -- (or $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/point-max.yasnippet b/snippets/emacs-lisp-mode/point-max.yasnippet index 6544869e1..5df439d04 100755 --- a/snippets/emacs-lisp-mode/point-max.yasnippet +++ b/snippets/emacs-lisp-mode/point-max.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: point-max -#key: point-max +# contributor: Xah Lee (XahLee.org) +# name: point-max +# key: point-max # -- (point-max) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/point-min.yasnippet b/snippets/emacs-lisp-mode/point-min.yasnippet index 029d73620..b5e58f77e 100755 --- a/snippets/emacs-lisp-mode/point-min.yasnippet +++ b/snippets/emacs-lisp-mode/point-min.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: point-min -#key: point-min -#key: pm +# contributor: Xah Lee (XahLee.org) +# name: point-min +# key: point-min +# key: pm # -- (point-min) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/point.yasnippet b/snippets/emacs-lisp-mode/point.yasnippet index 6aa6b7460..95b3dabb9 100755 --- a/snippets/emacs-lisp-mode/point.yasnippet +++ b/snippets/emacs-lisp-mode/point.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: point -#key: point -#key: p +# contributor: Xah Lee (XahLee.org) +# name: point +# key: point +# key: p # -- (point) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/princ.yasnippet b/snippets/emacs-lisp-mode/princ.yasnippet index 88ad7d74f..5c5f7dba0 100755 --- a/snippets/emacs-lisp-mode/princ.yasnippet +++ b/snippets/emacs-lisp-mode/princ.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: princ -#key: princ +# contributor: Xah Lee (XahLee.org) +# name: princ +# key: princ # -- (princ $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/print.yasnippet b/snippets/emacs-lisp-mode/print.yasnippet index 7d0f42145..dc156e8c1 100755 --- a/snippets/emacs-lisp-mode/print.yasnippet +++ b/snippets/emacs-lisp-mode/print.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: print -#key: print +# contributor: Xah Lee (XahLee.org) +# name: print +# key: print # -- (print $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/progn.yasnippet b/snippets/emacs-lisp-mode/progn.yasnippet index d07c5c381..4ae43ed21 100755 --- a/snippets/emacs-lisp-mode/progn.yasnippet +++ b/snippets/emacs-lisp-mode/progn.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: progn -#key: progn +# contributor: Xah Lee (XahLee.org) +# name: progn +# key: progn # -- (progn $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/push.yasnippet b/snippets/emacs-lisp-mode/push.yasnippet index f019b8025..080e61549 100755 --- a/snippets/emacs-lisp-mode/push.yasnippet +++ b/snippets/emacs-lisp-mode/push.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: push -#key: push +# contributor: Xah Lee (XahLee.org) +# name: push +# key: push # -- (push $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/put.yasnippet b/snippets/emacs-lisp-mode/put.yasnippet index 7a91f202e..85f88691c 100755 --- a/snippets/emacs-lisp-mode/put.yasnippet +++ b/snippets/emacs-lisp-mode/put.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: put -#key: put +# contributor: Xah Lee (XahLee.org) +# name: put +# key: put # -- (put $0 PROPNAME VALUE) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/re-search-backward.yasnippet b/snippets/emacs-lisp-mode/re-search-backward.yasnippet index a04d99ffc..c4e82cc09 100755 --- a/snippets/emacs-lisp-mode/re-search-backward.yasnippet +++ b/snippets/emacs-lisp-mode/re-search-backward.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: re-search-backward -#key: re-search-backward -#key: rsb +# contributor: Xah Lee (XahLee.org) +# name: re-search-backward +# key: re-search-backward +# key: rsb # -- (re-search-backward REGEXP$0 &optional BOUND NOERROR COUNT) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/re-search-forward.yasnippet b/snippets/emacs-lisp-mode/re-search-forward.yasnippet index 31a24a352..6e86e334c 100755 --- a/snippets/emacs-lisp-mode/re-search-forward.yasnippet +++ b/snippets/emacs-lisp-mode/re-search-forward.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: re-search-forward -#key: re-search-forward -#key: rsf +# contributor: Xah Lee (XahLee.org) +# name: re-search-forward +# key: re-search-forward +# key: rsf # -- (re-search-forward REGEXP$0 &optional BOUND NOERROR COUNT) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/region-active-p.yasnippet b/snippets/emacs-lisp-mode/region-active-p.yasnippet index e70553e53..c6891186e 100755 --- a/snippets/emacs-lisp-mode/region-active-p.yasnippet +++ b/snippets/emacs-lisp-mode/region-active-p.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: region-active-p -#key: region-active-p -#key: rap +# contributor: Xah Lee (XahLee.org) +# name: region-active-p +# key: region-active-p +# key: rap # -- (region-active-p) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/region-beginning.yasnippet b/snippets/emacs-lisp-mode/region-beginning.yasnippet index 55496e21f..b696fdcc9 100755 --- a/snippets/emacs-lisp-mode/region-beginning.yasnippet +++ b/snippets/emacs-lisp-mode/region-beginning.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: region-beginning -#key: region-beginning -#key: rb +# contributor: Xah Lee (XahLee.org) +# name: region-beginning +# key: region-beginning +# key: rb # -- (region-beginning) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/region-end.yasnippet b/snippets/emacs-lisp-mode/region-end.yasnippet index fddcd9fc6..9fe0ea8c2 100755 --- a/snippets/emacs-lisp-mode/region-end.yasnippet +++ b/snippets/emacs-lisp-mode/region-end.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: region-end -#key: region-end -#key: re +# contributor: Xah Lee (XahLee.org) +# name: region-end +# key: region-end +# key: re # -- (region-end) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/rename-file.yasnippet b/snippets/emacs-lisp-mode/rename-file.yasnippet index b589a89ad..6c47c7ebe 100755 --- a/snippets/emacs-lisp-mode/rename-file.yasnippet +++ b/snippets/emacs-lisp-mode/rename-file.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: rename-file -#key: rename-file -#key: rf +# contributor: Xah Lee (XahLee.org) +# name: rename-file +# key: rename-file +# key: rf # -- (rename-file FILE$0 NEWNAME &optional OK-IF-ALREADY-EXISTS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/repeat.yasnippet b/snippets/emacs-lisp-mode/repeat.yasnippet index 45422eb7e..a46e63b6d 100755 --- a/snippets/emacs-lisp-mode/repeat.yasnippet +++ b/snippets/emacs-lisp-mode/repeat.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: repeat -#key: repeat +# contributor: Xah Lee (XahLee.org) +# name: repeat +# key: repeat # -- (repeat $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/replace-regexp-in-string.yasnippet b/snippets/emacs-lisp-mode/replace-regexp-in-string.yasnippet index edf7f5bad..694717b53 100755 --- a/snippets/emacs-lisp-mode/replace-regexp-in-string.yasnippet +++ b/snippets/emacs-lisp-mode/replace-regexp-in-string.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: replace-regexp-in-string -#key: replace-regexp-in-string -#key: rris +# contributor: Xah Lee (XahLee.org) +# name: replace-regexp-in-string +# key: replace-regexp-in-string +# key: rris # -- (replace-regexp-in-string REGEXP$0 REP STRING &optional FIXEDCASE LITERAL SUBEXP START) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/replace-regexp.yasnippet b/snippets/emacs-lisp-mode/replace-regexp.yasnippet index 7535bc1f2..96823d622 100755 --- a/snippets/emacs-lisp-mode/replace-regexp.yasnippet +++ b/snippets/emacs-lisp-mode/replace-regexp.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: replace-regexp -#key: replace-regexp -#key: rr +# contributor: Xah Lee (XahLee.org) +# name: replace-regexp +# key: replace-regexp +# key: rr # -- (replace-regexp REGEXP$0 TO-STRING &optional DELIMITED START END) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/require.yasnippet b/snippets/emacs-lisp-mode/require.yasnippet index 9c91035d7..d26ffd67d 100755 --- a/snippets/emacs-lisp-mode/require.yasnippet +++ b/snippets/emacs-lisp-mode/require.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: require -#key: require +# contributor: Xah Lee (XahLee.org) +# name: require +# key: require # -- (require $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/save-buffer.yasnippet b/snippets/emacs-lisp-mode/save-buffer.yasnippet index 931a72cb0..009e4af9b 100755 --- a/snippets/emacs-lisp-mode/save-buffer.yasnippet +++ b/snippets/emacs-lisp-mode/save-buffer.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: save-buffer -#key: save-buffer -#key: sb +# contributor: Xah Lee (XahLee.org) +# name: save-buffer +# key: save-buffer +# key: sb # -- (save-buffer $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/save-excursion.yasnippet b/snippets/emacs-lisp-mode/save-excursion.yasnippet index 5f587ce30..799d2f070 100755 --- a/snippets/emacs-lisp-mode/save-excursion.yasnippet +++ b/snippets/emacs-lisp-mode/save-excursion.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: save-excursion -#key: save-excursion -#key: se +# contributor: Xah Lee (XahLee.org) +# name: save-excursion +# key: save-excursion +# key: se # -- (save-excursion $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/search-backward-regexp.yasnippet b/snippets/emacs-lisp-mode/search-backward-regexp.yasnippet index 33795fd87..299f2df2a 100755 --- a/snippets/emacs-lisp-mode/search-backward-regexp.yasnippet +++ b/snippets/emacs-lisp-mode/search-backward-regexp.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: search-backward-regexp -#key: search-backward-regexp -#key: sbr +# contributor: Xah Lee (XahLee.org) +# name: search-backward-regexp +# key: search-backward-regexp +# key: sbr # -- (search-backward-regexp "$0" &optional BOUND NOERROR COUNT) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/search-backward.yasnippet b/snippets/emacs-lisp-mode/search-backward.yasnippet index 4b07486c7..27ab5716e 100755 --- a/snippets/emacs-lisp-mode/search-backward.yasnippet +++ b/snippets/emacs-lisp-mode/search-backward.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: search-backward -#key: search-backward -#key: sb +# contributor: Xah Lee (XahLee.org) +# name: search-backward +# key: search-backward +# key: sb # -- (search-backward "$0" &optional BOUND NOERROR COUNT) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/search-forward-regexp.yasnippet b/snippets/emacs-lisp-mode/search-forward-regexp.yasnippet index eb37b8454..d7860d69d 100755 --- a/snippets/emacs-lisp-mode/search-forward-regexp.yasnippet +++ b/snippets/emacs-lisp-mode/search-forward-regexp.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: search-forward-regexp -#key: search-forward-regexp -#key: sfr +# contributor: Xah Lee (XahLee.org) +# name: search-forward-regexp +# key: search-forward-regexp +# key: sfr # -- (search-forward-regexp "$0" &optional BOUND NOERROR COUNT) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/search-forward.yasnippet b/snippets/emacs-lisp-mode/search-forward.yasnippet index 03e56c885..09f1216bd 100755 --- a/snippets/emacs-lisp-mode/search-forward.yasnippet +++ b/snippets/emacs-lisp-mode/search-forward.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: search-forward -#key: search-forward -#key: sf +# contributor: Xah Lee (XahLee.org) +# name: search-forward +# key: search-forward +# key: sf # -- (search-forward "$0" &optional BOUND NOERROR COUNT) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/set-buffer.yasnippet b/snippets/emacs-lisp-mode/set-buffer.yasnippet index 0eff93d8a..402ab8429 100755 --- a/snippets/emacs-lisp-mode/set-buffer.yasnippet +++ b/snippets/emacs-lisp-mode/set-buffer.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: set-buffer -#key: set-buffer -#key: sb +# contributor: Xah Lee (XahLee.org) +# name: set-buffer +# key: set-buffer +# key: sb # -- (set-buffer $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/set-file-modes.yasnippet b/snippets/emacs-lisp-mode/set-file-modes.yasnippet index f7d7e16cd..b64d5938c 100755 --- a/snippets/emacs-lisp-mode/set-file-modes.yasnippet +++ b/snippets/emacs-lisp-mode/set-file-modes.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: set-file-modes -#key: set-file-modes -#key: sfm +# contributor: Xah Lee (XahLee.org) +# name: set-file-modes +# key: set-file-modes +# key: sfm # -- (set-file-modes $0 MODE) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/set-mark.yasnippet b/snippets/emacs-lisp-mode/set-mark.yasnippet index 9a482a1c2..fe7a206ff 100755 --- a/snippets/emacs-lisp-mode/set-mark.yasnippet +++ b/snippets/emacs-lisp-mode/set-mark.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: set-mark -#key: set-mark -#key: sm +# contributor: Xah Lee (XahLee.org) +# name: set-mark +# key: set-mark +# key: sm # -- (set-mark $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/set.yasnippet b/snippets/emacs-lisp-mode/set.yasnippet index cf9c101f6..f7e83a46a 100755 --- a/snippets/emacs-lisp-mode/set.yasnippet +++ b/snippets/emacs-lisp-mode/set.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: set -#key: set +# contributor: Xah Lee (XahLee.org) +# name: set +# key: set # -- (set $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/setq.yasnippet b/snippets/emacs-lisp-mode/setq.yasnippet index 4bdb4fcac..3a263c697 100755 --- a/snippets/emacs-lisp-mode/setq.yasnippet +++ b/snippets/emacs-lisp-mode/setq.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: setq -#key: setq -#key: s +# contributor: Xah Lee (XahLee.org) +# name: setq +# key: setq +# key: s # -- (setq $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/skip-chars-backward.yasnippet b/snippets/emacs-lisp-mode/skip-chars-backward.yasnippet index 0fc4cf490..17c33d4f7 100755 --- a/snippets/emacs-lisp-mode/skip-chars-backward.yasnippet +++ b/snippets/emacs-lisp-mode/skip-chars-backward.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: skip-chars-backward -#key: skip-chars-backward -#key: scb +# contributor: Xah Lee (XahLee.org) +# name: skip-chars-backward +# key: skip-chars-backward +# key: scb # -- (skip-chars-backward "$0" &optional LIM) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/skip-chars-forward.yasnippet b/snippets/emacs-lisp-mode/skip-chars-forward.yasnippet index 110cbd5b4..7b9398732 100755 --- a/snippets/emacs-lisp-mode/skip-chars-forward.yasnippet +++ b/snippets/emacs-lisp-mode/skip-chars-forward.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: skip-chars-forward -#key: skip-chars-forward -#key: scf +# contributor: Xah Lee (XahLee.org) +# name: skip-chars-forward +# key: skip-chars-forward +# key: scf # -- (skip-chars-forward "$0" &optional LIM) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/split-string.yasnippet b/snippets/emacs-lisp-mode/split-string.yasnippet index 37c372dcb..9e03740ff 100755 --- a/snippets/emacs-lisp-mode/split-string.yasnippet +++ b/snippets/emacs-lisp-mode/split-string.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: split-string -#key: split-string -#key: ss +# contributor: Xah Lee (XahLee.org) +# name: split-string +# key: split-string +# key: ss # -- (split-string $0 &optional SEPARATORS OMIT-NULLS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/string-match.yasnippet b/snippets/emacs-lisp-mode/string-match.yasnippet index 1ef98765b..f39c69e23 100755 --- a/snippets/emacs-lisp-mode/string-match.yasnippet +++ b/snippets/emacs-lisp-mode/string-match.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: string-match -#key: string-match -#key: sm +# contributor: Xah Lee (XahLee.org) +# name: string-match +# key: string-match +# key: sm # -- (string-match "REGEXP$0" "STRING" &optional START) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/string-to-number.yasnippet b/snippets/emacs-lisp-mode/string-to-number.yasnippet index 449d62119..f47c9d478 100755 --- a/snippets/emacs-lisp-mode/string-to-number.yasnippet +++ b/snippets/emacs-lisp-mode/string-to-number.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: string-to-number -#key: string-to-number -#key: stn +# contributor: Xah Lee (XahLee.org) +# name: string-to-number +# key: string-to-number +# key: stn # -- (string-to-number "$0") \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/string.yasnippet b/snippets/emacs-lisp-mode/string.yasnippet index f3a4ddadd..07c17f1b5 100755 --- a/snippets/emacs-lisp-mode/string.yasnippet +++ b/snippets/emacs-lisp-mode/string.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: string -#key: string +# contributor: Xah Lee (XahLee.org) +# name: string +# key: string # -- (string $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/string=.yasnippet b/snippets/emacs-lisp-mode/string=.yasnippet index d0d43aa77..3a458e854 100755 --- a/snippets/emacs-lisp-mode/string=.yasnippet +++ b/snippets/emacs-lisp-mode/string=.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: string= -#key: string= +# contributor: Xah Lee (XahLee.org) +# name: string= +# key: string= # -- (string= $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/stringp.yasnippet b/snippets/emacs-lisp-mode/stringp.yasnippet index c20be65cc..432f6e010 100755 --- a/snippets/emacs-lisp-mode/stringp.yasnippet +++ b/snippets/emacs-lisp-mode/stringp.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: stringp -#key: stringp +# contributor: Xah Lee (XahLee.org) +# name: stringp +# key: stringp # -- (stringp $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/substring.yasnippet b/snippets/emacs-lisp-mode/substring.yasnippet index 8ab6b4972..eeb0c02db 100755 --- a/snippets/emacs-lisp-mode/substring.yasnippet +++ b/snippets/emacs-lisp-mode/substring.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: substring -#key: substring +# contributor: Xah Lee (XahLee.org) +# name: substring +# key: substring # -- (substring STRING$0 FROM &optional TO) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/thing-at-point.yasnippet b/snippets/emacs-lisp-mode/thing-at-point.yasnippet index 9c6e18988..6b78e03be 100755 --- a/snippets/emacs-lisp-mode/thing-at-point.yasnippet +++ b/snippets/emacs-lisp-mode/thing-at-point.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: thing-at-point -#key: thing-at-point -#key: tap +# contributor: Xah Lee (XahLee.org) +# name: thing-at-point +# key: thing-at-point +# key: tap # -- (thing-at-point '$0) ; symbol, list, sexp, defun, filename, url, email, word, sentence, whitespace, line, page ... \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/unless.yasnippet b/snippets/emacs-lisp-mode/unless.yasnippet index 15c1518ff..bdde0cfa6 100755 --- a/snippets/emacs-lisp-mode/unless.yasnippet +++ b/snippets/emacs-lisp-mode/unless.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: unless -#key: unless +# contributor: Xah Lee (XahLee.org) +# name: unless +# key: unless # -- (unless $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/vector.yasnippet b/snippets/emacs-lisp-mode/vector.yasnippet index 59ad236d5..5aea79abd 100755 --- a/snippets/emacs-lisp-mode/vector.yasnippet +++ b/snippets/emacs-lisp-mode/vector.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: vector -#key: vector -#key: v +# contributor: Xah Lee (XahLee.org) +# name: vector +# key: vector +# key: v # -- (vector $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/when.yasnippet b/snippets/emacs-lisp-mode/when.yasnippet index c5f447831..86d31d9a4 100755 --- a/snippets/emacs-lisp-mode/when.yasnippet +++ b/snippets/emacs-lisp-mode/when.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: when -#key: when +# contributor: Xah Lee (XahLee.org) +# name: when +# key: when # -- (when $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/while.yasnippet b/snippets/emacs-lisp-mode/while.yasnippet index 4584be3a8..1802e1b32 100755 --- a/snippets/emacs-lisp-mode/while.yasnippet +++ b/snippets/emacs-lisp-mode/while.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: while -#key: while +# contributor: Xah Lee (XahLee.org) +# name: while +# key: while # -- (while $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/widget-get.yasnippet b/snippets/emacs-lisp-mode/widget-get.yasnippet index 24caf7b77..f183569f6 100755 --- a/snippets/emacs-lisp-mode/widget-get.yasnippet +++ b/snippets/emacs-lisp-mode/widget-get.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: widget-get -#key: widget-get -#key: wg +# contributor: Xah Lee (XahLee.org) +# name: widget-get +# key: widget-get +# key: wg # -- (widget-get $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/with-current-buffer.yasnippet b/snippets/emacs-lisp-mode/with-current-buffer.yasnippet index 904130324..1e6a94e33 100755 --- a/snippets/emacs-lisp-mode/with-current-buffer.yasnippet +++ b/snippets/emacs-lisp-mode/with-current-buffer.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: with-current-buffer -#key: with-current-buffer -#key: wcb +# contributor: Xah Lee (XahLee.org) +# name: with-current-buffer +# key: with-current-buffer +# key: wcb # -- (with-current-buffer $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/x-dired.process_marked.yasnippet b/snippets/emacs-lisp-mode/x-dired.process_marked.yasnippet index 9af5a26ed..710657c0e 100755 --- a/snippets/emacs-lisp-mode/x-dired.process_marked.yasnippet +++ b/snippets/emacs-lisp-mode/x-dired.process_marked.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: process marked files in dired +# contributor: Xah Lee (XahLee.org) +# name: process marked files in dired # key: x-dired # -- ;; idiom for processing a list of files in dired's marked files diff --git a/snippets/emacs-lisp-mode/x-file.process.yasnippet b/snippets/emacs-lisp-mode/x-file.process.yasnippet index 3c828226b..dc60b1716 100755 --- a/snippets/emacs-lisp-mode/x-file.process.yasnippet +++ b/snippets/emacs-lisp-mode/x-file.process.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: a function that process a file +# contributor: Xah Lee (XahLee.org) +# name: a function that process a file # key: x-file # -- (defun doThisFile (fpath) diff --git a/snippets/emacs-lisp-mode/x-file.read-lines.yasnippet b/snippets/emacs-lisp-mode/x-file.read-lines.yasnippet index 2b2398394..f85fe4e2a 100755 --- a/snippets/emacs-lisp-mode/x-file.read-lines.yasnippet +++ b/snippets/emacs-lisp-mode/x-file.read-lines.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: read lines of a file +# contributor: Xah Lee (XahLee.org) +# name: read lines of a file # key: x-file # -- (defun read-lines (filePath) diff --git a/snippets/emacs-lisp-mode/x-find-replace.yasnippet b/snippets/emacs-lisp-mode/x-find-replace.yasnippet index d4c4d111b..e5a1d6c39 100755 --- a/snippets/emacs-lisp-mode/x-find-replace.yasnippet +++ b/snippets/emacs-lisp-mode/x-find-replace.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: find and replace on region +# contributor: Xah Lee (XahLee.org) +# name: find and replace on region # key: x-find-replace # -- (defun replace-html-chars-region (start end) diff --git a/snippets/emacs-lisp-mode/x-grabstring.yasnippet b/snippets/emacs-lisp-mode/x-grabstring.yasnippet index d348e9319..d194f2a11 100755 --- a/snippets/emacs-lisp-mode/x-grabstring.yasnippet +++ b/snippets/emacs-lisp-mode/x-grabstring.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: grab buffer substring +# contributor: Xah Lee (XahLee.org) +# name: grab buffer substring # key: x-grabstring # -- (setq $0 (buffer-substring-no-properties myStartPos myEndPos)) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/x-grabthing.yasnippet b/snippets/emacs-lisp-mode/x-grabthing.yasnippet index 2c0079d37..d65c1fda8 100755 --- a/snippets/emacs-lisp-mode/x-grabthing.yasnippet +++ b/snippets/emacs-lisp-mode/x-grabthing.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: grab word under cursor +# contributor: Xah Lee (XahLee.org) +# name: grab word under cursor # key: x-grabthing # -- (setq $0 (thing-at-point 'symbol)) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/x-traverse_dir.yasnippet b/snippets/emacs-lisp-mode/x-traverse_dir.yasnippet index cfa461a1e..df0261d98 100755 --- a/snippets/emacs-lisp-mode/x-traverse_dir.yasnippet +++ b/snippets/emacs-lisp-mode/x-traverse_dir.yasnippet @@ -1,5 +1,5 @@ -#name: traversing a directory -#contributor: Xah Lee (XahLee.org) +# name: traversing a directory +# contributor: Xah Lee (XahLee.org) # key: x-traverse_dir # -- ;; apply a function to all files in a dir diff --git a/snippets/emacs-lisp-mode/x-word-or-region.yasnippet b/snippets/emacs-lisp-mode/x-word-or-region.yasnippet index c7b851b2c..b72f8b84c 100755 --- a/snippets/emacs-lisp-mode/x-word-or-region.yasnippet +++ b/snippets/emacs-lisp-mode/x-word-or-region.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: Command that works on region or word +# contributor: Xah Lee (XahLee.org) +# name: Command that works on region or word # key: x-word-or-region # -- ;; example of a command that works on current word or text selection diff --git a/snippets/emacs-lisp-mode/y-or-n-p.yasnippet b/snippets/emacs-lisp-mode/y-or-n-p.yasnippet index 8aeec6397..7ebc50305 100755 --- a/snippets/emacs-lisp-mode/y-or-n-p.yasnippet +++ b/snippets/emacs-lisp-mode/y-or-n-p.yasnippet @@ -1,6 +1,6 @@ -#contributor: Xah Lee (XahLee.org) -#name: y-or-n-p -#key: y-or-n-p -#key: yonp +# contributor: Xah Lee (XahLee.org) +# name: y-or-n-p +# key: y-or-n-p +# key: yonp # -- (yes-or-no-p "PROMPT$0 ") \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/yes-or-no-p.yasnippet b/snippets/emacs-lisp-mode/yes-or-no-p.yasnippet index e7bb064a9..fe85e7787 100755 --- a/snippets/emacs-lisp-mode/yes-or-no-p.yasnippet +++ b/snippets/emacs-lisp-mode/yes-or-no-p.yasnippet @@ -1,5 +1,5 @@ -#contributor: Xah Lee (XahLee.org) -#name: yes-or-no-p -#key: yes-or-no-p +# contributor: Xah Lee (XahLee.org) +# name: yes-or-no-p +# key: yes-or-no-p # -- (yes-or-no-p "PROMPT$0 ") \ No newline at end of file diff --git a/snippets/erlang-mode/after b/snippets/erlang-mode/after index 996c84727..4b2eab209 100644 --- a/snippets/erlang-mode/after +++ b/snippets/erlang-mode/after @@ -1,4 +1,4 @@ -#name : after ... -> +# name: after ... -> # key: after # -- after diff --git a/snippets/erlang-mode/begin b/snippets/erlang-mode/begin index b74e6fa2d..ad9a68bef 100644 --- a/snippets/erlang-mode/begin +++ b/snippets/erlang-mode/begin @@ -1,4 +1,4 @@ -#name : begin ... end +# name: begin ... end # key: begin # -- begin diff --git a/snippets/erlang-mode/beh b/snippets/erlang-mode/beh index e68397a17..b7696ff4b 100644 --- a/snippets/erlang-mode/beh +++ b/snippets/erlang-mode/beh @@ -1,4 +1,4 @@ -#name : -behaviour(...). +# name: -behaviour(...). # key: beh # -- -behaviour(${1:gen_server}). diff --git a/snippets/erlang-mode/case b/snippets/erlang-mode/case index 9a2337c0f..f5326fa4f 100644 --- a/snippets/erlang-mode/case +++ b/snippets/erlang-mode/case @@ -1,4 +1,4 @@ -#name : case ... of ... end +# name: case ... of ... end # key: case # -- case $1 of diff --git a/snippets/erlang-mode/compile b/snippets/erlang-mode/compile index ce38c20c9..4622aa2eb 100644 --- a/snippets/erlang-mode/compile +++ b/snippets/erlang-mode/compile @@ -1,4 +1,4 @@ -#name : -compile(...). +# name: -compile(...). # key: compile # -- -compile([${1:export_all}]). diff --git a/snippets/erlang-mode/def b/snippets/erlang-mode/def index e6c6de045..bea99c33a 100644 --- a/snippets/erlang-mode/def +++ b/snippets/erlang-mode/def @@ -1,4 +1,4 @@ -#name : -define(...,...). +# name: -define(...,...). # key: def # -- -define($1,$2). diff --git a/snippets/erlang-mode/exp b/snippets/erlang-mode/exp index db614f3da..dcef7896e 100644 --- a/snippets/erlang-mode/exp +++ b/snippets/erlang-mode/exp @@ -1,5 +1,5 @@ -#name : -export([]). -#contributor : hitesh +# name: -export([]). +# contributor: hitesh # key: exp # -- -export([${1:start/0}]). diff --git a/snippets/erlang-mode/fun b/snippets/erlang-mode/fun index 82e8e79bc..1665ef6a9 100644 --- a/snippets/erlang-mode/fun +++ b/snippets/erlang-mode/fun @@ -1,4 +1,4 @@ -#name : fun (...) -> ... end +# name: fun (...) -> ... end # key: fun # -- fun ($1) -> $0 end \ No newline at end of file diff --git a/snippets/erlang-mode/if b/snippets/erlang-mode/if index 2f73bc21c..dae3cc75f 100644 --- a/snippets/erlang-mode/if +++ b/snippets/erlang-mode/if @@ -1,4 +1,4 @@ -#name : if ... -> ... ; true -> ... end +# name: if ... -> ... ; true -> ... end # key: if # -- if diff --git a/snippets/erlang-mode/ifdef b/snippets/erlang-mode/ifdef index 48ab801bc..feacf74ad 100644 --- a/snippets/erlang-mode/ifdef +++ b/snippets/erlang-mode/ifdef @@ -1,4 +1,4 @@ -#name : -ifdef(...). ... -endif. +# name: -ifdef(...). ... -endif. # key: ifdef # -- -ifdef($1). diff --git a/snippets/erlang-mode/ifndef b/snippets/erlang-mode/ifndef index a61c68e43..7c5d931fa 100644 --- a/snippets/erlang-mode/ifndef +++ b/snippets/erlang-mode/ifndef @@ -1,4 +1,4 @@ -#name : -ifndef(...). ... -endif. +# name: -ifndef(...). ... -endif. # key: ifndef # -- -ifndef($1). diff --git a/snippets/erlang-mode/imp b/snippets/erlang-mode/imp index 944400592..5db8aaf61 100644 --- a/snippets/erlang-mode/imp +++ b/snippets/erlang-mode/imp @@ -1,5 +1,5 @@ -#name : -import([]). -#contributor : hitesh +# name: -import([]). +# contributor: hitesh # key: imp # -- -import(${1:lists}, [${2:map/2, sum/1}]). diff --git a/snippets/erlang-mode/inc b/snippets/erlang-mode/inc index 9a4d83345..47f4008dc 100644 --- a/snippets/erlang-mode/inc +++ b/snippets/erlang-mode/inc @@ -1,4 +1,4 @@ -#name : -include("..."). +# name: -include("..."). # key: inc # -- -include("$1"). diff --git a/snippets/erlang-mode/inc.lib b/snippets/erlang-mode/inc.lib index 1fed6539d..5ca063126 100644 --- a/snippets/erlang-mode/inc.lib +++ b/snippets/erlang-mode/inc.lib @@ -1,4 +1,4 @@ -#name : -include_lib("..."). +# name: -include_lib("..."). # key: inc # -- -include_lib("$1"). diff --git a/snippets/erlang-mode/loop b/snippets/erlang-mode/loop index c2f6b33d1..86f92a4bd 100644 --- a/snippets/erlang-mode/loop +++ b/snippets/erlang-mode/loop @@ -1,4 +1,4 @@ -#name : loop(...) -> receive _ -> loop(...) end. +# name: loop(...) -> receive _ -> loop(...) end. # key: loop # -- ${1:loop}($2) -> diff --git a/snippets/erlang-mode/mod b/snippets/erlang-mode/mod index a9df25ed7..8cb747ad5 100644 --- a/snippets/erlang-mode/mod +++ b/snippets/erlang-mode/mod @@ -1,5 +1,5 @@ -#name : -module(). -#contributor : hitesh +# name: -module(). +# contributor: hitesh # key: mod # -- -module(${1:`(file-name-nondirectory diff --git a/snippets/erlang-mode/rcv b/snippets/erlang-mode/rcv index b584e333e..f5bdaa285 100644 --- a/snippets/erlang-mode/rcv +++ b/snippets/erlang-mode/rcv @@ -1,4 +1,4 @@ -#name : receive ... -> ... end +# name: receive ... -> ... end # key: rcv # -- receive diff --git a/snippets/erlang-mode/rcv.after b/snippets/erlang-mode/rcv.after index 27d4739ba..687b78d1c 100644 --- a/snippets/erlang-mode/rcv.after +++ b/snippets/erlang-mode/rcv.after @@ -1,4 +1,4 @@ -#name : receive after ... -> ... end +# name: receive after ... -> ... end # key: rcv # -- receive diff --git a/snippets/erlang-mode/rec b/snippets/erlang-mode/rec index 5b18cfe24..b3819a64b 100644 --- a/snippets/erlang-mode/rec +++ b/snippets/erlang-mode/rec @@ -1,4 +1,4 @@ -#name : -record(...,{...}). +# name: -record(...,{...}). # key: rec # -- -record($1,{$2}). diff --git a/snippets/erlang-mode/try b/snippets/erlang-mode/try index 9eea5aa96..0ff10a885 100644 --- a/snippets/erlang-mode/try +++ b/snippets/erlang-mode/try @@ -1,4 +1,4 @@ -#name : try ... of ... catch after end +# name: try ... of ... catch after end # key: try # -- try $1 of diff --git a/snippets/erlang-mode/undef b/snippets/erlang-mode/undef index 688c1f96f..bd51fe612 100644 --- a/snippets/erlang-mode/undef +++ b/snippets/erlang-mode/undef @@ -1,4 +1,4 @@ -#name : -undef(...). +# name: -undef(...). # key: undef # -- -undef($1). diff --git a/snippets/f90-mode/au b/snippets/f90-mode/au index 264668567..e402b21c8 100644 --- a/snippets/f90-mode/au +++ b/snippets/f90-mode/au @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : automatic +# contributor: Li Zhu +# name: automatic # key: au # -- automatic $0 \ No newline at end of file diff --git a/snippets/f90-mode/bd b/snippets/f90-mode/bd index 398a5cdc2..081b03991 100644 --- a/snippets/f90-mode/bd +++ b/snippets/f90-mode/bd @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : block data +# contributor: Li Zhu +# name: block data # key: bd # -- block data $0 \ No newline at end of file diff --git a/snippets/f90-mode/c b/snippets/f90-mode/c index 8bb855bd1..cf28d3635 100644 --- a/snippets/f90-mode/c +++ b/snippets/f90-mode/c @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : continue +# contributor: Li Zhu +# name: continue # key: c # -- continue $0 \ No newline at end of file diff --git a/snippets/f90-mode/ch b/snippets/f90-mode/ch index e10214c96..db43003f7 100644 --- a/snippets/f90-mode/ch +++ b/snippets/f90-mode/ch @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : character +# contributor: Li Zhu +# name: character # key: ch # -- character $0 \ No newline at end of file diff --git a/snippets/f90-mode/cx b/snippets/f90-mode/cx index ac294d84a..70e916387 100644 --- a/snippets/f90-mode/cx +++ b/snippets/f90-mode/cx @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : complex +# contributor: Li Zhu +# name: complex # key: cx # -- complex $0 \ No newline at end of file diff --git a/snippets/f90-mode/dc b/snippets/f90-mode/dc index 318f4640b..df5f0260a 100644 --- a/snippets/f90-mode/dc +++ b/snippets/f90-mode/dc @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : double complex +# contributor: Li Zhu +# name: double complex # key: dc # -- double complex $0 \ No newline at end of file diff --git a/snippets/f90-mode/do b/snippets/f90-mode/do index 1ade91817..c3aa1f2ea 100644 --- a/snippets/f90-mode/do +++ b/snippets/f90-mode/do @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : do while (...) end do +# contributor: Li Zhu +# name: do while (...) end do # key: do # -- do while (${1:condition}) diff --git a/snippets/f90-mode/dp b/snippets/f90-mode/dp index 1ff6db83f..e705b7c3e 100644 --- a/snippets/f90-mode/dp +++ b/snippets/f90-mode/dp @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : double precision +# contributor: Li Zhu +# name: double precision # key: dp # -- double precision $0 \ No newline at end of file diff --git a/snippets/f90-mode/eq b/snippets/f90-mode/eq index 9fe99c7cd..1ace4ce62 100644 --- a/snippets/f90-mode/eq +++ b/snippets/f90-mode/eq @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : equivalence +# contributor: Li Zhu +# name: equivalence # key: eq # -- equivalence $0 \ No newline at end of file diff --git a/snippets/f90-mode/ib b/snippets/f90-mode/ib index c3be9d1e8..3fd8fbd41 100644 --- a/snippets/f90-mode/ib +++ b/snippets/f90-mode/ib @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : implicit byte +# contributor: Li Zhu +# name: implicit byte # key: ib # -- implicit byte $0 \ No newline at end of file diff --git a/snippets/f90-mode/ic b/snippets/f90-mode/ic index e5f3a713e..516d13935 100644 --- a/snippets/f90-mode/ic +++ b/snippets/f90-mode/ic @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : implicit complex +# contributor: Li Zhu +# name: implicit complex # key: ic # -- implicit complex $0 \ No newline at end of file diff --git a/snippets/f90-mode/ich b/snippets/f90-mode/ich index 5fbe0bd80..f6b1f80c8 100644 --- a/snippets/f90-mode/ich +++ b/snippets/f90-mode/ich @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : implicit character +# contributor: Li Zhu +# name: implicit character # key: ich # -- implicit character $0 \ No newline at end of file diff --git a/snippets/f90-mode/if b/snippets/f90-mode/if index 8f53f9766..f4a42e182 100644 --- a/snippets/f90-mode/if +++ b/snippets/f90-mode/if @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : if then end if +# contributor: Li Zhu +# name: if then end if # key: if # -- if ( ${1:condition} ) then diff --git a/snippets/f90-mode/ii b/snippets/f90-mode/ii index 31d112943..7317cc35a 100644 --- a/snippets/f90-mode/ii +++ b/snippets/f90-mode/ii @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : implicit integer +# contributor: Li Zhu +# name: implicit integer # key: ii # -- implicit integer $0 \ No newline at end of file diff --git a/snippets/f90-mode/il b/snippets/f90-mode/il index 560112fb6..0ce006e8d 100644 --- a/snippets/f90-mode/il +++ b/snippets/f90-mode/il @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : implicit logical +# contributor: Li Zhu +# name: implicit logical # key: il # -- implicit logical $0 \ No newline at end of file diff --git a/snippets/f90-mode/in b/snippets/f90-mode/in index 8321ebe41..a9d84a1d1 100644 --- a/snippets/f90-mode/in +++ b/snippets/f90-mode/in @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : implicit none +# contributor: Li Zhu +# name: implicit none # key: in # -- implicit none \ No newline at end of file diff --git a/snippets/f90-mode/inc b/snippets/f90-mode/inc index 70a6cde8c..cc761bb71 100644 --- a/snippets/f90-mode/inc +++ b/snippets/f90-mode/inc @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : include +# contributor: Li Zhu +# name: include # key: inc # -- include $0 \ No newline at end of file diff --git a/snippets/f90-mode/intr b/snippets/f90-mode/intr index 4e04c0af3..689f20a5c 100644 --- a/snippets/f90-mode/intr +++ b/snippets/f90-mode/intr @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : intrinsic +# contributor: Li Zhu +# name: intrinsic # key: intr # -- intrinsic $0 \ No newline at end of file diff --git a/snippets/f90-mode/ir b/snippets/f90-mode/ir index 71933c88f..77ddea9e3 100644 --- a/snippets/f90-mode/ir +++ b/snippets/f90-mode/ir @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : implicit real +# contributor: Li Zhu +# name: implicit real # key: ir # -- implicit real $0 \ No newline at end of file diff --git a/snippets/f90-mode/l b/snippets/f90-mode/l index e3cf4fea5..c48b11ebe 100644 --- a/snippets/f90-mode/l +++ b/snippets/f90-mode/l @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : logical +# contributor: Li Zhu +# name: logical # key: l # -- logical $0 \ No newline at end of file diff --git a/snippets/f90-mode/pa b/snippets/f90-mode/pa index aeaa1d31f..d92f75be9 100644 --- a/snippets/f90-mode/pa +++ b/snippets/f90-mode/pa @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : parameter +# contributor: Li Zhu +# name: parameter # key: pa # -- parameter $0 \ No newline at end of file diff --git a/snippets/f90-mode/pr b/snippets/f90-mode/pr index a97ced21b..f570d5f9d 100644 --- a/snippets/f90-mode/pr +++ b/snippets/f90-mode/pr @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : program ... end program ... +# contributor: Li Zhu +# name: program ... end program ... # key: pr # -- program ${1:name} diff --git a/snippets/f90-mode/re b/snippets/f90-mode/re index 42712e0f7..a42e5a9cb 100644 --- a/snippets/f90-mode/re +++ b/snippets/f90-mode/re @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : read (*,*) +# contributor: Li Zhu +# name: read (*,*) # key: re # -- read (${1:*},${2:*}) $0 \ No newline at end of file diff --git a/snippets/f90-mode/st b/snippets/f90-mode/st index 71b9e5aa9..eda6f2ebf 100644 --- a/snippets/f90-mode/st +++ b/snippets/f90-mode/st @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : structure +# contributor: Li Zhu +# name: structure # key: st # -- structure $0 \ No newline at end of file diff --git a/snippets/f90-mode/su b/snippets/f90-mode/su index 1ffb74962..5b3e3cf7b 100644 --- a/snippets/f90-mode/su +++ b/snippets/f90-mode/su @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : subroutine +# contributor: Li Zhu +# name: subroutine # key: su # -- subroutine $0 \ No newline at end of file diff --git a/snippets/f90-mode/wr b/snippets/f90-mode/wr index de38c98ec..0c9b4e69b 100644 --- a/snippets/f90-mode/wr +++ b/snippets/f90-mode/wr @@ -1,5 +1,5 @@ -#contributor: Li Zhu -#name : write (*,*) +# contributor: Li Zhu +# name: write (*,*) # key: wr # -- write (${1:*},${2:*}) $0 \ No newline at end of file diff --git a/snippets/html-mode/b.yasnippet b/snippets/html-mode/b.yasnippet index 6ee743196..c7873ca2c 100755 --- a/snippets/html-mode/b.yasnippet +++ b/snippets/html-mode/b.yasnippet @@ -1,5 +1,5 @@ -#contributor : Xah Lee xahlee.org -#name : ... +# contributor: Xah Lee xahlee.org +# name: ... # key: b # -- $0 \ No newline at end of file diff --git a/snippets/html-mode/body b/snippets/html-mode/body index 8333cca87..d6c5db33a 100644 --- a/snippets/html-mode/body +++ b/snippets/html-mode/body @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name : ... +# contributor: Jimmy Wu +# name: ... # key: body # -- diff --git a/snippets/html-mode/br b/snippets/html-mode/br index 68e990726..9305a5073 100644 --- a/snippets/html-mode/br +++ b/snippets/html-mode/br @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name :
+# contributor: Jimmy Wu +# name:
# key: br # --
\ No newline at end of file diff --git a/snippets/html-mode/code b/snippets/html-mode/code index cc843293a..96d47e06c 100644 --- a/snippets/html-mode/code +++ b/snippets/html-mode/code @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name : ... +# contributor: Jimmy Wu +# name: ... # key: code # -- diff --git a/snippets/html-mode/code.class b/snippets/html-mode/code.class index 5338b12b5..2d18af748 100644 --- a/snippets/html-mode/code.class +++ b/snippets/html-mode/code.class @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name : ... +# contributor: Jimmy Wu +# name: ... # key: code # -- diff --git a/snippets/html-mode/div b/snippets/html-mode/div index 2c7dfc402..8b97ed112 100644 --- a/snippets/html-mode/div +++ b/snippets/html-mode/div @@ -1,4 +1,4 @@ -#name : ... +# name: ... # key: div # -- $0 \ No newline at end of file diff --git a/snippets/html-mode/div.class b/snippets/html-mode/div.class index 54ad2e26c..e1a4b039d 100644 --- a/snippets/html-mode/div.class +++ b/snippets/html-mode/div.class @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name :
...
+# contributor: Jimmy Wu +# name:
...
# key: div # --
diff --git a/snippets/html-mode/div.id b/snippets/html-mode/div.id index 92f8239b5..8682aa165 100644 --- a/snippets/html-mode/div.id +++ b/snippets/html-mode/div.id @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name :
...
+# contributor: Jimmy Wu +# name:
...
# key: div # --
diff --git a/snippets/html-mode/div.id-class b/snippets/html-mode/div.id-class index 3d40ad755..452cd9a65 100644 --- a/snippets/html-mode/div.id-class +++ b/snippets/html-mode/div.id-class @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name :
...
+# contributor: Jimmy Wu +# name:
...
# key: div # --
diff --git a/snippets/html-mode/dov b/snippets/html-mode/dov index af8ab5015..d3bdc17c9 100644 --- a/snippets/html-mode/dov +++ b/snippets/html-mode/dov @@ -1,4 +1,4 @@ -#name : ... +# name: ... # key: dov # -- a mirror up here $3 diff --git a/snippets/html-mode/form b/snippets/html-mode/form index 0f1ce7ce2..de0626794 100644 --- a/snippets/html-mode/form +++ b/snippets/html-mode/form @@ -1,4 +1,4 @@ -#contributor : Jimmy Wu +# contributor: Jimmy Wu #name :
# key: form # -- diff --git a/snippets/html-mode/head b/snippets/html-mode/head index 0329c3655..c5c0d0e9f 100644 --- a/snippets/html-mode/head +++ b/snippets/html-mode/head @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name : ... +# contributor: Jimmy Wu +# name: ... # key: head # -- diff --git a/snippets/html-mode/header/h1 b/snippets/html-mode/header/h1 index e32f5763e..4d217641f 100644 --- a/snippets/html-mode/header/h1 +++ b/snippets/html-mode/header/h1 @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name :

...

+# contributor: Jimmy Wu +# name:

...

# key: h1 # --

$1

\ No newline at end of file diff --git a/snippets/html-mode/header/h2 b/snippets/html-mode/header/h2 index 9455b95b8..1cca1d5c8 100644 --- a/snippets/html-mode/header/h2 +++ b/snippets/html-mode/header/h2 @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name :

...

+# contributor: Jimmy Wu +# name:

...

# key: h2 # --

$1

\ No newline at end of file diff --git a/snippets/html-mode/header/h3 b/snippets/html-mode/header/h3 index ce40bd6d4..8e50a6d2e 100644 --- a/snippets/html-mode/header/h3 +++ b/snippets/html-mode/header/h3 @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name :

...

+# contributor: Jimmy Wu +# name:

...

# key: h3 # --

$1

\ No newline at end of file diff --git a/snippets/html-mode/header/h4 b/snippets/html-mode/header/h4 index 83ccd0620..08c853e24 100644 --- a/snippets/html-mode/header/h4 +++ b/snippets/html-mode/header/h4 @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name :

...

+# contributor: Jimmy Wu +# name:

...

# key: h4 # --

$1

\ No newline at end of file diff --git a/snippets/html-mode/header/h5 b/snippets/html-mode/header/h5 index ea4ae11df..951122ec5 100644 --- a/snippets/html-mode/header/h5 +++ b/snippets/html-mode/header/h5 @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name :
...
+# contributor: Jimmy Wu +# name:
...
# key: h5 # --
$1
\ No newline at end of file diff --git a/snippets/html-mode/header/h6 b/snippets/html-mode/header/h6 index 14cf49e3b..f7da2ee01 100644 --- a/snippets/html-mode/header/h6 +++ b/snippets/html-mode/header/h6 @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name :
...
+# contributor: Jimmy Wu +# name:
...
# key: h6 # --
$1
\ No newline at end of file diff --git a/snippets/html-mode/hr b/snippets/html-mode/hr index c87ceb7cc..a6eb0eae8 100644 --- a/snippets/html-mode/hr +++ b/snippets/html-mode/hr @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name :
+# contributor: Jimmy Wu +# name:
# key: hr # --
\ No newline at end of file diff --git a/snippets/html-mode/href b/snippets/html-mode/href index ac1285af3..b384653f2 100644 --- a/snippets/html-mode/href +++ b/snippets/html-mode/href @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name : ... +# contributor: Jimmy Wu +# name: ... # key: href # -- $2 \ No newline at end of file diff --git a/snippets/html-mode/html b/snippets/html-mode/html index 12beee319..0484de0bb 100644 --- a/snippets/html-mode/html +++ b/snippets/html-mode/html @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name : ... +# contributor: Jimmy Wu +# name: ... # key: html # -- diff --git a/snippets/html-mode/html.xmlns b/snippets/html-mode/html.xmlns index a93d24d56..1b11f3505 100644 --- a/snippets/html-mode/html.xmlns +++ b/snippets/html-mode/html.xmlns @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name : ... +# contributor: Jimmy Wu +# name: ... # key: html # -- diff --git a/snippets/html-mode/i.yasnippet b/snippets/html-mode/i.yasnippet index 6d8520344..ffd051f63 100755 --- a/snippets/html-mode/i.yasnippet +++ b/snippets/html-mode/i.yasnippet @@ -1,5 +1,5 @@ -#contributor : Xah Lee xahlee.org -#name : ... +# contributor: Xah Lee xahlee.org +# name: ... # key: i # -- $0 \ No newline at end of file diff --git a/snippets/html-mode/img b/snippets/html-mode/img index 93e00d4d4..e726c001d 100644 --- a/snippets/html-mode/img +++ b/snippets/html-mode/img @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name : ... +# contributor: Jimmy Wu +# name: ... # key: img # -- $3 \ No newline at end of file diff --git a/snippets/html-mode/input b/snippets/html-mode/input index 83b885493..2f8c79aa3 100644 --- a/snippets/html-mode/input +++ b/snippets/html-mode/input @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name : +# contributor: Jimmy Wu +# name: # key: input # -- \ No newline at end of file diff --git a/snippets/html-mode/link.stylesheet b/snippets/html-mode/link.stylesheet index 66e583377..e10ee8b0c 100644 --- a/snippets/html-mode/link.stylesheet +++ b/snippets/html-mode/link.stylesheet @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name : +# contributor: Jimmy Wu +# name: # key: link # -- \ No newline at end of file diff --git a/snippets/html-mode/link.stylesheet-ie b/snippets/html-mode/link.stylesheet-ie index c4cee761f..752f9e91a 100644 --- a/snippets/html-mode/link.stylesheet-ie +++ b/snippets/html-mode/link.stylesheet-ie @@ -1,5 +1,5 @@ -#contributor : Jimmy Wu -#name : +# contributor: Jimmy Wu +# name: # key: link # --