added ~25 snippets for emacs lisp mode.

This commit is contained in:
Xah Lee 2010-08-06 08:19:38 +00:00
parent 6c35178715
commit bcff5c0b29
27 changed files with 105 additions and 2 deletions

View File

@ -1,5 +1,5 @@
#contributor: Xah Lee (XahLee.org)
#name: autoload
# --
(autoload 'FUNCNAME$0 "FILENAME" & "DOCSTRING" INTERACTIVE TYPE)
(autoload 'FUNCNAME$0 "FILENAME" &optional "DOCSTRING" INTERACTIVE TYPE)

View File

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

View File

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

View File

@ -0,0 +1,7 @@
#contributor: Xah Lee (XahLee.org)
#name: cond
# --
(cond
(CONDITION$0 BODY)
(CONDITION BODY)
)

View File

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

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: defcustom
# --
(defcustom $0 VALUE "DOC" &optional ARGS)

View File

@ -1,4 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: defvar
# --
(defvar SYMBOL & INITVALUE "DOCSTRING")
(defvar SYMBOL &optional INITVALUE "DOCSTRING")

View File

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

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: error
# --
(error "$0" &optional ARGS)

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: format
# --
(format $0 &optional OBJECTS)

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: goto-char
# --
(goto-char $0)

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: insert
# --
(insert $0)

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: interactive
# --
(interactive)

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: lambda
# --
(lambda ($0) "DOCSTRING" (interactive) BODY)

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: length
# --
(length $0)

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: list
# --
(list $0)

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: message
# --
(message "FORMATSTRING$0" &optional ARGS)

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: nth
# --
(nth N$0 LIST)

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: point-min
# --
(point-min)

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: point
# --
(point)

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: progn
# --
(progn $0)

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: put
# --
(put $0 PROPNAME VALUE)

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: save-excursion
# --
(save-excursion $0)

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: string-match
# --
(string-match "REGEXP$0" "STRING" &optional START)

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: unless
# --
(unless $0)

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: when
# --
(when $0)

View File

@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: while
# --
(while $0)