File tree 4 files changed +173
-166
lines changed
4 files changed +173
-166
lines changed Original file line number Diff line number Diff line change @@ -71,9 +71,9 @@ All very straightforward!
71
71
72
72
## Lisp hacking
73
73
74
- [ Make sure to read the Zygomys documentation.] ( https://github.com/glycerine/zygomys /wiki )
75
- Note that Zygomys catches most crashes, and writes out the stacktrace to the
76
- file crash.log in the current directory. If you get stuck (sometimes Zygomys will
74
+ [ Make sure to read the Glisp documentation.] ( https://github.com/zhemao/glisp /wiki )
75
+ Note that Glisp catches most crashes, and writes out the stacktrace to the
76
+ file crash.log in the current directory. If you get stuck (sometimes Glisp will
77
77
crash and not get restarted) hit the ` <f12> ` key, which will quit Gomacs
78
78
immediately.
79
79
Original file line number Diff line number Diff line change 3
3
![ A screenshot showing Gomacs editing this README and its own source code] ( gomacs.png )
4
4
5
5
Gomacs is an Emacs clone for the terminal. Unlike many other mini-Emacsen, it
6
- has an embedded Lisp, [ powered by Zygomys .] ( https://github.com/glycerine/zygomys )
6
+ has an embedded Lisp, [ powered by Glisp .] ( https://github.com/zhemao/glisp )
7
7
This puts it in the realm of true Emacs! It also supports primitive syntax
8
8
highlighting for C and Go.
9
9
@@ -38,7 +38,7 @@ yet - I'll try to keep this list up to date!
38
38
- ` C-z ` - Suspend Gomacs (Linux only)
39
39
- ` M-x ` - Run named command
40
40
- ` <f12> ` - Panic key - quit emacs immediately without saving changes. Useful if
41
- Zygomys falls down (which may happen if you do a lot of hacking on the editor's
41
+ Glisp falls down (which may happen if you do a lot of hacking on the editor's
42
42
internals)
43
43
44
44
### Getting help
@@ -101,7 +101,7 @@ yet - I'll try to keep this list up to date!
101
101
## Customization
102
102
103
103
Emacs loads from ~ /.gomacs.lisp on startup and executes the content of this file.
104
- Check out the Zygomys documentation for information on how the language works!
104
+ Check out the Glisp documentation for information on how the language works!
105
105
Some functions to get you started…
106
106
107
107
- ` (emacsbindkey arg1 arg2..) ` - Bind arg1 (in standard Emacs C-\* /M-\* notation,
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package main
3
3
import (
4
4
"bytes"
5
5
"errors"
6
- "github.com/glycerine/zygomys/repl "
6
+ "github.com/zhemao/glisp/interpreter "
7
7
"strings"
8
8
)
9
9
@@ -17,7 +17,7 @@ var funcnames map[string]*CommandFunc
17
17
18
18
type CommandFunc struct {
19
19
Name string
20
- Com func (env * zygo .Glisp )
20
+ Com func (env * glisp .Glisp )
21
21
}
22
22
23
23
func WalkCommandTree (root * CommandList , pre string ) string {
@@ -95,7 +95,7 @@ func DescribeKeyBriefly() {
95
95
editorSetPrompt ("" )
96
96
}
97
97
98
- func RunCommand (env * zygo .Glisp ) {
98
+ func RunCommand (env * glisp .Glisp ) {
99
99
cmdname := StrToCmdName (editorPrompt ("Run command" , nil ))
100
100
cmd := funcnames [cmdname ]
101
101
if cmd != nil && cmd .Com != nil {
You can’t perform that action at this time.
0 commit comments