Emacs Lisp reference (106K lines info).
Scanned 9/6/2026
Install to Claude Code
npx -y skills add plurigrid/asi --skill elisp --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Elisp?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/plurigrid-elisp-asi)More formats (shields.io, HTML) on the badges page.
---
name: elisp
description: Emacs Lisp reference (106K lines info).
metadata:
trit: 0
---
# elisp
Emacs Lisp reference (106K lines info).
## Basics
```elisp
(defun greet (name)
"Greet NAME."
(message "Hello, %s!" name))
(let ((x 1) (y 2))
(+ x y))
```
## Macros
```elisp
(defmacro when-let ((var expr) &rest body)
`(let ((,var ,expr))
(when ,var ,@body)))
```
## Hooks
```elisp
(add-hook 'after-init-hook #'my-setup)
(remove-hook 'before-save-hook #'delete-trailing-whitespace)
```
## Advice
```elisp
(advice-add 'find-file :before #'my-before-find-file)
(advice-add 'save-buffer :after #'my-after-save)
```
## Info
```
C-h i m elisp RET
C-h f <function>
C-h v <variable>
```
## REPL atlas
Part of: `repl-commons`. Family canonical: `emacs`.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!