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
+1 -1
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)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: cdr
# --
(cdr $0)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: concat
# --
(concat $0)
+7
View File
@@ -0,0 +1,7 @@
#contributor: Xah Lee (XahLee.org)
#name: cond
# --
(cond
(CONDITION$0 BODY)
(CONDITION BODY)
)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: cons
# --
(cons $0)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: defcustom
# --
(defcustom $0 VALUE "DOC" &optional ARGS)
+1 -1
View File
@@ -1,4 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: defvar
# --
(defvar SYMBOL & INITVALUE "DOCSTRING")
(defvar SYMBOL &optional INITVALUE "DOCSTRING")
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: eq
# --
(eq $0)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: error
# --
(error "$0" &optional ARGS)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: format
# --
(format $0 &optional OBJECTS)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: goto-char
# --
(goto-char $0)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: insert
# --
(insert $0)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: interactive
# --
(interactive)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: lambda
# --
(lambda ($0) "DOCSTRING" (interactive) BODY)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: length
# --
(length $0)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: list
# --
(list $0)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: message
# --
(message "FORMATSTRING$0" &optional ARGS)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: nth
# --
(nth N$0 LIST)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: point-min
# --
(point-min)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: point
# --
(point)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: progn
# --
(progn $0)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: put
# --
(put $0 PROPNAME VALUE)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: save-excursion
# --
(save-excursion $0)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: string-match
# --
(string-match "REGEXP$0" "STRING" &optional START)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: unless
# --
(unless $0)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: when
# --
(when $0)
+4
View File
@@ -0,0 +1,4 @@
#contributor: Xah Lee (XahLee.org)
#name: while
# --
(while $0)