Skip to content

Commit 7bc54ea

Browse files
committed
Update README
1 parent 337cdda commit 7bc54ea

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed

README.md

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,11 @@ This is a temporary fork of: https://github.com/abo-abo/lispy
1515

1616
I will maintain Lispy here until [abo-abo](https://github.com/abo-abo/) returns. Feel free to open up issues and submit pull requests. I have already ported over and merged some open PRs on the original Lispy repo.
1717

18-
Use as follows:
18+
Presuming [Elpaca](https://github.com/progfolio/elpaca), use as follows:
1919

2020
```lisp
2121
(use-package lispy
22-
:straight (lispy
23-
:type git
24-
:host github
25-
:repo "enzuru/lispy")
26-
:ensure t
22+
:ensure (:host github :repo "enzuru/lispy")
2723
:hook ((emacs-lisp-mode . lispy-mode)
2824
(ielm-mode . lispy-mode)
2925
(lisp-mode . lispy-mode)
@@ -102,7 +98,7 @@ The killer-feature are the short bindings:
10298
Most of more than 100 interactive commands that `lispy` provides are
10399
bound to <kbd>a</kbd>-<kbd>z</kbd> and <kbd>A</kbd>-<kbd>Z</kbd> in
104100
`lispy-mode`. You can see the full command reference with many
105-
examples [here](http://abo-abo.github.io/lispy/).
101+
examples [here](http://enzuru.github.io/lispy/reference.html).
106102

107103
The price for these short bindings is that they are only active when:
108104

@@ -214,7 +210,7 @@ situation.
214210
- <kbd>F</kbd> jumps to symbol, <kbd>D</kbd> jumps back
215211
- <kbd>C-1</kbd> shows documentation in an overlay
216212
- <kbd>C-2</kbd> shows arguments in an overlay
217-
- [<kbd>Z</kbd>](http://abo-abo.github.io/lispy/#lispy-edebug-stop) breaks
213+
- [<kbd>Z</kbd>](http://enzuru.github.io/lispy/reference.html#lispy-edebug-stop) breaks
218214
out of `edebug`, while storing current function's arguments
219215

220216
Some pictures [here](#ide-like-features).
@@ -237,7 +233,7 @@ Some pictures [here](#ide-like-features).
237233
- `edebug` (<kbd>xe</kbd>)
238234

239235
## Function reference
240-
Most functions are cataloged and described at http://abo-abo.github.io/lispy/.
236+
Most functions are cataloged and described at http://enzuru.github.io/lispy/reference.html.
241237

242238
# Getting Started
243239
## Installation instructions
@@ -387,14 +383,14 @@ this:
387383
## List commands overview
388384
### Inserting pairs
389385

390-
Here's a list of commands for inserting [pairs](http://abo-abo.github.io/lispy/#lispy-pair):
386+
Here's a list of commands for inserting [pairs](http://enzuru.github.io/lispy/reference.html#lispy-pair):
391387

392388
key | command
393389
------------------|-------------------------------------------------------------------
394-
<kbd>(</kbd> | [`lispy-parens`](http://abo-abo.github.io/lispy/#lispy-parens)
395-
<kbd>{</kbd> | [`lispy-braces`](http://abo-abo.github.io/lispy/#lispy-braces)
396-
<kbd>}</kbd> | [`lispy-brackets`](http://abo-abo.github.io/lispy/#lispy-brackets)
397-
<kbd>"</kbd> | [`lispy-quotes`](http://abo-abo.github.io/lispy/#lispy-quotes)
390+
<kbd>(</kbd> | [`lispy-parens`](http://enzuru.github.io/lispy/reference.html#lispy-parens)
391+
<kbd>{</kbd> | [`lispy-braces`](http://enzuru.github.io/lispy/reference.html#lispy-braces)
392+
<kbd>}</kbd> | [`lispy-brackets`](http://enzuru.github.io/lispy/reference.html#lispy-brackets)
393+
<kbd>"</kbd> | [`lispy-quotes`](http://enzuru.github.io/lispy/reference.html#lispy-quotes)
398394

399395
### Reversible commands
400396

0 commit comments

Comments
 (0)