cleaned up about 100 emacs lisp mode snippets. Added key field to them. Removed redundant files.

This commit is contained in:
Xah Lee 2010-08-24 10:01:37 +00:00
parent 97c12db10f
commit e74926a53d
119 changed files with 159 additions and 44 deletions

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: add-hook #name: add-hook
#key: add-hook
#key: ah
# -- # --
(add-hook HOOK$0 FUNCTION) (add-hook HOOK$0 FUNCTION)

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: beginning-of-line #name: beginning-of-line
#key: beginning-of-line
#key: bol
# -- # --
(beginning-of-line) (beginning-of-line)

View File

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

View File

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

View File

@ -1,4 +0,0 @@
#contributor: Xah Lee (XahLee.org)
#name: buffer-substring-no-properties
# --
(buffer-substring-no-properties START$0 END)

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: buffer-file-name #name: buffer-file-name
#key: buffer-file-name
#key: bfn
# -- # --
(buffer-file-name) (buffer-file-name)

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: buffer-substring-no-properties #name: buffer-substring-no-properties
#key: buffer-substring-no-properties
#key: bsnp
# -- # --
(buffer-substring-no-properties START$0 END) (buffer-substring-no-properties START$0 END)

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: buffer-substring #name: buffer-substring
#key: buffer-substring
#key: bs
# -- # --
(buffer-substring START$0 END) (buffer-substring START$0 END)

View File

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

View File

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

View File

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

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: condition-case #name: condition-case
#key: condition-case
#key: cc
# -- # --
(condition-case $0 ) (condition-case $0 )

View File

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

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: current-buffer #name: current-buffer
#key: current-buffer
#key: cb
# -- # --
(current-buffer) (current-buffer)

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: custom-autoload #name: custom-autoload
#key: custom-autoload
#key: ca
# -- # --
(custom-autoload$0 SYMBOL LOAD &optional NOSET) (custom-autoload$0 SYMBOL LOAD &optional NOSET)

View File

@ -1,4 +1,5 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: defalias #name: defalias
#key: defalias
# -- # --
(defalias 'SYMBOL$0 'DEFINITION &optional DOCSTRING) (defalias 'SYMBOL$0 'DEFINITION &optional DOCSTRING)

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: define-key #name: define-key
#key: define-key
#key: dk
# -- # --
(define-key KEYMAPNAME$0 (kbd "M-b") 'FUNCNAME) (define-key KEYMAPNAME$0 (kbd "M-b") 'FUNCNAME)

View File

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

View File

@ -1,5 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: defun #name: defun
#key: defun
# -- # --
(defun $1 () (defun $1 ()
"DOCSTRING" "DOCSTRING"

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: delete-region #name: delete-region
#key: delete-region
#key: dr
# -- # --
(delete-region $0 ) (delete-region $0 )

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: end-of-line #name: end-of-line
#key: end-of-line
#key: eol
# -- # --
(end-of-line) (end-of-line)

View File

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

View File

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

View File

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

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: expand-file-name #name: expand-file-name
#key: expand-file-name
#key: efn
# -- # --
(expand-file-name $0 ) (expand-file-name $0 )

View File

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

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: file-name-nondirectory #name: file-name-nondirectory
#key: file-name-nondirectory
#key: fnn
# -- # --
(file-name-nondirectory $0 ) (file-name-nondirectory $0 )

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: file-relative-name #name: file-relative-name
#key: file-relative-name
#key: frn
# -- # --
(file-relative-name $0 ) (file-relative-name $0 )

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: find-file #name: find-file
#key: find-file
#key: ff
# -- # --
(find-file $0 ) (find-file $0 )

View File

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

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: forward-line #name: forward-line
#key: forward-line
#key: fl
# -- # --
(forward-line $0 ) (forward-line $0 )

View File

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

View File

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

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: global-set-key #name: global-set-key
#key: global-set-key
#key: gsk
# -- # --
(global-set-key (kbd "C-$0") 'COMMAND) (global-set-key (kbd "C-$0") 'COMMAND)

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: kill-buffer #name: kill-buffer
#key: kill-buffer
#key: kb
# -- # --
(kill-buffer $0) (kill-buffer $0)

View File

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

View File

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

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: line-beginning-position #name: line-beginning-position
#key: line-beginning-position
#key: lbp
# -- # --
(line-beginning-position) (line-beginning-position)

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: line-end-position #name: line-end-position
#key: line-end-position
#key: lep
# -- # --
(line-end-position) (line-end-position)

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: looking-at #name: looking-at
#key: looking-at
#key: la
# -- # --
(looking-at $0) (looking-at $0)

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: make-local-variable #name: make-local-variable
#key: make-local-variable
#key: mlv
# -- # --
(make-local-variable $0) (make-local-variable $0)

View File

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

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: match-beginning #name: match-beginning
#key: match-beginning
#key: mb
# -- # --
(match-beginning N$0) (match-beginning N$0)

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: match-end #name: match-end
#key: match-end
#key: me
# -- # --
(match-end N$0) (match-end N$0)

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: match-string #name: match-string
#key: match-string
#key: ms
# -- # --
(match-string $0 ) (match-string $0 )

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: number-to-string #name: number-to-string
#key: number-to-string
#key: nts
# -- # --
(number-to-string $0) (number-to-string $0)

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: re-search-backward #name: re-search-backward
#key: re-search-backward
#key: rsb
# -- # --
(re-search-backward REGEXP$0 &optional BOUND NOERROR COUNT) (re-search-backward REGEXP$0 &optional BOUND NOERROR COUNT)

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: re-search-forward #name: re-search-forward
#key: re-search-forward
#key: rsf
# -- # --
(re-search-forward REGEXP$0 &optional BOUND NOERROR COUNT) (re-search-forward REGEXP$0 &optional BOUND NOERROR COUNT)

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: region-beginning #name: region-beginning
#key: region-beginning
#key: rb
# -- # --
(region-beginning) (region-beginning)

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: region-end #name: region-end
#key: region-end
#key: re
# -- # --
(region-end) (region-end)

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: replace-regexp-in-string #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) (replace-regexp-in-string REGEXP$0 REP STRING &optional FIXEDCASE LITERAL SUBEXP START)

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: replace-regexp #name: replace-regexp
#key: replace-regexp
#key: rr
# -- # --
(replace-regexp REGEXP$0 TO-STRING &optional DELIMITED START END) (replace-regexp REGEXP$0 TO-STRING &optional DELIMITED START END)

View File

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

View File

@ -1,4 +0,0 @@
#contributor: Xah Lee (XahLee.org)
#name: rris
# --
(replace-regexp-in-string "REGEXP"$0 "REP" "STRING" &optional FIXEDCASE LITERAL SUBEXP START)

View File

@ -1,4 +0,0 @@
# -*- mode: snippet -*-
# name: setq
# --
(setq $0)

View File

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

View File

@ -1,4 +1,6 @@
#contributor: Xah Lee (XahLee.org) #contributor: Xah Lee (XahLee.org)
#name: search-backward #name: search-backward
#key: search-backward
#key: sb
# -- # --
(search-backward "$0" &optional BOUND NOERROR COUNT) (search-backward "$0" &optional BOUND NOERROR COUNT)

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