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
This commit is contained in:
Jim Myhrberg 2011-11-03 20:51:31 +00:00
parent acf84b2fe4
commit 09cc3eec21
533 changed files with 1180 additions and 1180 deletions

View File

@ -142,8 +142,8 @@ valid filename, ``lt.yasnippet`` for example, using ``<`` for the
.. sourcecode:: text
#key: <
#name: <...></...>
# key: <
# name: <...></...>
# --
<${1:div}>$0</$1>

View File

@ -81,8 +81,8 @@ Here's a typical example:
.. sourcecode:: text
#contributor : pluskid <pluskid@gmail.com>
#name : __...__
# contributor: pluskid <pluskid@gmail.com>
# 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 : <p>...</p>
#binding: C-c C-c C-m
# name: <p>...</p>
# binding: C-c C-c C-m
# --
<p>`(when yas/prefix "\n")`$0`(when yas/prefix "\n")`</p>

View File

@ -1,4 +1,4 @@
#name : v.begin(), v.end()
# name: v.begin(), v.end()
# key: beginend
# --
${1:v}.begin(), $1.end

View File

@ -1,4 +1,4 @@
#name : class ... { ... }
# name: class ... { ... }
# key: class
# --
class ${1:Name}

View File

@ -1,4 +1,4 @@
#name : namespace ...
# name: namespace ...
# key: ns
# --
namespace

View File

@ -1,4 +1,4 @@
#name : template <typename ...>
# name: template <typename ...>
# key: template
# --
template <typename ${T}>

View File

@ -1,4 +1,4 @@
#name : using namespace ...
# name: using namespace ...
# key: using
# --
using namespace ${std};

View File

@ -1,4 +1,4 @@
#name : FILE *fp = fopen(..., ...);
# name: FILE *fp = fopen(..., ...);
# key: fopen
# --
FILE *${fp} = fopen(${"file"}, "${r}");

View File

@ -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) "," "\);")

View File

@ -1,4 +1,4 @@
#name : do { ... } while (...)
# name: do { ... } while (...)
# key: do
# --
do

View File

@ -1,4 +1,4 @@
#name : for (...; ...; ...) { ... }
# name: for (...; ...; ...) { ... }
# key: for
# --
for (${1:int i = 0}; ${2:i < N}; ${3:++i})

View File

@ -1,4 +1,4 @@
#name : if (...) { ... }
# name: if (...) { ... }
# key: cc-modeif
# --
if (${1:condition})

View File

@ -1,4 +1,4 @@
#name : #include "..."
# name: #include "..."
# key: inc
# --
#include "$1"

View File

@ -1,4 +1,4 @@
#name : #include <...>
# name: #include <...>
# key: inc
# --
#include <$1>

View File

@ -1,4 +1,4 @@
#name: int main(argc, argv) { ... }
# name: int main(argc, argv) { ... }
# key: main
# --
int main(int argc, char *argv[])

View File

@ -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_}

View File

@ -1,4 +1,4 @@
#name : struct ... { ... }
# name: struct ... { ... }
# key: struct
# --
struct ${1:name}

View File

@ -1,5 +1,5 @@
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : private attribute ....;
# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: private attribute ....;
# key: attrib
# --
/// <summary>

View File

@ -1,5 +1,5 @@
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : private attribute ....; public property ... ... { ... }
# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: private attribute ....; public property ... ... { ... }
# key: attrib
# --
/// <summary>

View File

@ -1,5 +1,5 @@
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : private _attribute ....; public Property ... ... { ... }
# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: private _attribute ....; public Property ... ... { ... }
# key: attrib
# --
/// <summary>

View File

@ -1,5 +1,5 @@
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : class ... { ... }
# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: class ... { ... }
# key: class
# --
${5:public} class ${1:Name}

View File

@ -1,5 +1,5 @@
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : /// <summary> ... </summary>
# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: /// <summary> ... </summary>
# key: comment
# --
/// <summary>

View File

@ -1,5 +1,5 @@
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : /// <param name="..."> ... </param>
# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: /// <param name="..."> ... </param>
# key: comment
# --
/// <param name="$1">$2</param>

View File

@ -1,5 +1,5 @@
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : /// <param name="..."> ... </param>
# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: /// <param name="..."> ... </param>
# key: comment
# --
/// <returns>$1</returns>

View File

@ -1,5 +1,5 @@
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : /// <exception cref="..."> ... </exception>
# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: /// <exception cref="..."> ... </exception>
# key: comment
# --
/// <exception cref="$1">$2</exception>

View File

@ -1,5 +1,5 @@
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : public void Method { ... }
# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: public void Method { ... }
# key: method
# --
/// <summary>

View File

@ -1,5 +1,5 @@
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : namespace .. { ... }
# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: namespace .. { ... }
# key: namespace
# --
namespace $1

View File

@ -1,5 +1,5 @@
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : property ... ... { ... }
# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: property ... ... { ... }
# key: prop
# --
/// <summary>

View File

@ -1,5 +1,5 @@
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : #region ... #endregion
# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: #region ... #endregion
# key: region
# --
#region $1

View File

@ -1,5 +1,5 @@
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : using ...;
# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: using ...;
# key: using
# --
using $1;

View File

@ -1,5 +1,5 @@
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : using System;
# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: using System;
# key: using
# --
using System;

View File

@ -1,5 +1,5 @@
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : using System....;
# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: using System....;
# key: using
# --
using System.$1;

View File

@ -1,4 +1,4 @@
#name : background-color: ...
# name: background-color: ...
# key: bg
# --
background-color: #${1:DDD};

View File

@ -1,4 +1,4 @@
#name : background-image: ...
# name: background-image: ...
# key: bg
# --
background-image: url($1);

View File

@ -1,4 +1,4 @@
#name : border size style color
# name: border size style color
# key: bor
# --
border: ${1:1px} ${2:solid} #${3:999};

View File

@ -1,5 +1,5 @@
#contributor : rejeep <johan.rejeep@gmail.com>
#name : clear: ...
# contributor: rejeep <johan.rejeep@gmail.com>
# name: clear: ...
# key: cl
# --
clear: $1;

View File

@ -1,5 +1,5 @@
#contributor : rejeep <johan.rejeep@gmail.com>
#name : display: block
# contributor: rejeep <johan.rejeep@gmail.com>
# name: display: block
# key: disp
# --
display: block;

View File

@ -1,5 +1,5 @@
#contributor : rejeep <johan.rejeep@gmail.com>
#name : display: inline
# contributor: rejeep <johan.rejeep@gmail.com>
# name: display: inline
# key: disp
# --
display: inline;

View File

@ -1,5 +1,5 @@
#contributor : rejeep <johan.rejeep@gmail.com>
#name : display: none
# contributor: rejeep <johan.rejeep@gmail.com>
# name: display: none
# key: disp
# --
display: none;

View File

@ -1,5 +1,5 @@
#contributor : rejeep <johan.rejeep@gmail.com>
#name : font-family: ...
# contributor: rejeep <johan.rejeep@gmail.com>
# name: font-family: ...
# key: ff
# --
font-family: $1;

View File

@ -1,5 +1,5 @@
#contributor : rejeep <johan.rejeep@gmail.com>
#name : font-size: ...
# contributor: rejeep <johan.rejeep@gmail.com>
# name: font-size: ...
# key: fs
# --
font-size: ${12px};

View File

@ -1,5 +1,5 @@
#contributor : rejeep <johan.rejeep@gmail.com>
#name : margin-bottom: ...
# contributor: rejeep <johan.rejeep@gmail.com>
# name: margin-bottom: ...
# key: mar
# --
margin-bottom: $1;

View File

@ -1,5 +1,5 @@
#contributor : rejeep <johan.rejeep@gmail.com>
#name : margin-left: ...
# contributor: rejeep <johan.rejeep@gmail.com>
# name: margin-left: ...
# key: mar
# --
margin-left: $1;

View File

@ -1,5 +1,5 @@
#contributor : rejeep <johan.rejeep@gmail.com>
#name : margin: ...
# contributor: rejeep <johan.rejeep@gmail.com>
# name: margin: ...
# key: mar
# --
margin: $1;

View File

@ -1,5 +1,5 @@
#contributor : rejeep <johan.rejeep@gmail.com>
#name : margin top right bottom left
# contributor: rejeep <johan.rejeep@gmail.com>
# name: margin top right bottom left
# key: mar
# --
margin: ${top} ${right} ${bottom} ${left};

View File

@ -1,5 +1,5 @@
#contributor : rejeep <johan.rejeep@gmail.com>
#name : margin-right: ...
# contributor: rejeep <johan.rejeep@gmail.com>
# name: margin-right: ...
# key: mar
# --
margin-right: $1;

View File

@ -1,5 +1,5 @@
#contributor : rejeep <johan.rejeep@gmail.com>
#name : margin-top: ...
# contributor: rejeep <johan.rejeep@gmail.com>
# name: margin-top: ...
# key: mar
# --
margin-top: $1;

View File

@ -1,5 +1,5 @@
#contributor : rejeep <johan.rejeep@gmail.com>
#name : padding-bottom: ...
# contributor: rejeep <johan.rejeep@gmail.com>
# name: padding-bottom: ...
# key: pad
# --
padding-bottom: $1;

View File

@ -1,5 +1,5 @@
#contributor : rejeep <johan.rejeep@gmail.com>
#name : padding-left: ...
# contributor: rejeep <johan.rejeep@gmail.com>
# name: padding-left: ...
# key: pad
# --
padding-left: $1;

View File

@ -1,5 +1,5 @@
#contributor : rejeep <johan.rejeep@gmail.com>
#name : padding: ...
# contributor: rejeep <johan.rejeep@gmail.com>
# name: padding: ...
# key: pad
# --
padding: $1;

View File

@ -1,5 +1,5 @@
#contributor : rejeep <johan.rejeep@gmail.com>
#name : padding: top right bottom left
# contributor: rejeep <johan.rejeep@gmail.com>
# name: padding: top right bottom left
# key: pad
# --
padding: ${top} ${right} ${bottom} ${left};

View File

@ -1,5 +1,5 @@
#contributor : rejeep <johan.rejeep@gmail.com>
#name : padding-right: ...
# contributor: rejeep <johan.rejeep@gmail.com>
# name: padding-right: ...
# key: pad
# --
padding-right: $1;

View File

@ -1,5 +1,5 @@
#contributor : rejeep <johan.rejeep@gmail.com>
#name : padding-top: ...
# contributor: rejeep <johan.rejeep@gmail.com>
# name: padding-top: ...
# key: pad
# --
padding-top: $1;

View File

@ -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)

View File

@ -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)

View File

@ -1,5 +1,5 @@
#contributor: Xah Lee (XahLee.org)
#name: append
#key: append
# contributor: Xah Lee (XahLee.org)
# name: append
# key: append
# --
(append $0 )

View File

@ -1,5 +1,5 @@
#contributor: Xah Lee (XahLee.org)
#name: apply
#key: apply
# contributor: Xah Lee (XahLee.org)
# name: apply
# key: apply
# --
(apply $0 )

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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 ...

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -1,5 +1,5 @@
#contributor: Xah Lee (XahLee.org)
#name: car
#key: car
# contributor: Xah Lee (XahLee.org)
# name: car
# key: car
# --
(car $0)

View File

@ -1,5 +1,5 @@
#contributor: Xah Lee (XahLee.org)
#name: cdr
#key: cdr
# contributor: Xah Lee (XahLee.org)
# name: cdr
# key: cdr
# --
(cdr $0)

View File

@ -1,5 +1,5 @@
#contributor: Xah Lee (XahLee.org)
#name: concat
#key: concat
# contributor: Xah Lee (XahLee.org)
# name: concat
# key: concat
# --
(concat $0)

View File

@ -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)

View File

@ -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 )

View File

@ -1,5 +1,5 @@
#contributor: Xah Lee (XahLee.org)
#name: cons
#key: cons
# contributor: Xah Lee (XahLee.org)
# name: cons
# key: cons
# --
(cons $0)

View File

@ -1,5 +1,5 @@
#contributor: Xah Lee (XahLee.org)
#name: consp
#key: consp
# contributor: Xah Lee (XahLee.org)
# name: consp
# key: consp
# --
(consp $0 )

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -1,5 +1,5 @@
#contributor: Xah Lee (XahLee.org)
#name: defsubst
#key: defsubst
# contributor: Xah Lee (XahLee.org)
# name: defsubst
# key: defsubst
# --
(defsubst $0 )

View File

@ -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"

View File

@ -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")

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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 )

View File

@ -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)

View File

@ -1,5 +1,5 @@
#contributor: Xah Lee (XahLee.org)
#name: dolist
#key: dolist
# contributor: Xah Lee (XahLee.org)
# name: dolist
# key: dolist
# --
(dolist $0 )

View File

@ -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)

View File

@ -1,5 +1,5 @@
#contributor: Xah Lee (XahLee.org)
#name: eq
#key: eq
# contributor: Xah Lee (XahLee.org)
# name: eq
# key: eq
# --
(eq $0)

View File

@ -1,5 +1,5 @@
#contributor: Xah Lee (XahLee.org)
#name: equal
#key: equal
# contributor: Xah Lee (XahLee.org)
# name: equal
# key: equal
# --
(equal $0)

View File

@ -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)

View File

@ -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 )

View File

@ -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)

View File

@ -1,5 +1,5 @@
#contributor: Xah Lee (XahLee.org)
#name: fboundp
#key: fboundp
# contributor: Xah Lee (XahLee.org)
# name: fboundp
# key: fboundp
# --
(fboundp '$0 )

View File

@ -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)

View File

@ -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)

Some files were not shown because too many files have changed in this diff Show More