<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wikemacs.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=91.199.35.1</id>
	<title>WikEmacs - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wikemacs.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=91.199.35.1"/>
	<link rel="alternate" type="text/html" href="https://wikemacs.org/wiki/Special:Contributions/91.199.35.1"/>
	<updated>2026-04-08T20:00:16Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.14</generator>
	<entry>
		<id>https://wikemacs.org/index.php?title=Scheme&amp;diff=2599</id>
		<title>Scheme</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=Scheme&amp;diff=2599"/>
		<updated>2012-04-06T08:55:02Z</updated>

		<summary type="html">&lt;p&gt;91.199.35.1: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Scheme is a functional programming language of the [[lisp]] family. Praised for its minimalist design, Scheme also pioneers the [[lexical scope]], tail-call optimization and first class continuation.&lt;br /&gt;
&lt;br /&gt;
== Implementation ==&lt;br /&gt;
&lt;br /&gt;
=== Guile ===&lt;br /&gt;
[[Guile]] is the GNU Ubiquitous Intelligent Language for Extensions, the official extension language for the GNU operating system.&lt;br /&gt;
&lt;br /&gt;
=== Racket ===&lt;br /&gt;
Formerly known as PLT Scheme&lt;br /&gt;
&lt;br /&gt;
== Major Mode for editing Scheme == &lt;br /&gt;
=== Scheme mode ===&lt;br /&gt;
Emacs has built-in Scheme Mode. It provides basic features, such as syntax highlighting etc. &lt;br /&gt;
&lt;br /&gt;
=== Geiser ===&lt;br /&gt;
Geiser is a collection of Emacs major and minor mode, that can help Emacs to communicate to a foreign Scheme interpreter. It provides [[SLIME]]-like support for Racket and Guile. &lt;br /&gt;
&lt;br /&gt;
Example config may look like this:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
(defun turn-on-parenthesis-goodies () (rainbow-delimiters-mode 1) (paredit-mode 1))&lt;br /&gt;
(add-hook 'scheme-mode-hook 'turn-on-parenthesis-goodies)&lt;br /&gt;
(load-file &amp;quot;C:/path-to-geiser/elisp/geiser.el&amp;quot;)&lt;br /&gt;
(setq geiser-active-implementations '(racket))&lt;br /&gt;
(setq geiser-racket-binary &amp;quot;C:/path-to-racket/racket.exe&amp;quot;)&lt;br /&gt;
(require 'quack)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Minor Mode for editing Scheme ==&lt;br /&gt;
&lt;br /&gt;
* [http://mumble.net/~campbell/emacs/paredit.el ParEdit] is a mode for structured editing of [[S-expression]]s. Useful with any Lisp.&lt;br /&gt;
* [https://github.com/jlr/rainbow-delimiters RainbowDelimiters] highlights parentheses, brackets, and braces according to their depth, each level in a different colour. Also available in [[ELPA]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Useful Links ==&lt;br /&gt;
* [http://docs.racket-lang.org/guide/Emacs.html Racket documentation on Emacs as IDE]&lt;br /&gt;
&lt;br /&gt;
[[Category:Lisp]]&lt;/div&gt;</summary>
		<author><name>91.199.35.1</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=Scheme&amp;diff=2062</id>
		<title>Scheme</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=Scheme&amp;diff=2062"/>
		<updated>2012-03-31T20:58:37Z</updated>

		<summary type="html">&lt;p&gt;91.199.35.1: /* Racket */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Emacs has built-in Scheme Mode. It provides basic features, such as syntax highlighting etc.&lt;br /&gt;
&lt;br /&gt;
== Implementation ==&lt;br /&gt;
&lt;br /&gt;
=== Guile ===&lt;br /&gt;
[[Guile]] is the GNU Ubiquitous Intelligent Language for Extensions, the official extension language for the GNU operating system.&lt;br /&gt;
&lt;br /&gt;
=== Racket ===&lt;br /&gt;
Formerly known as PLT Scheme&lt;br /&gt;
&lt;br /&gt;
== Major Mode for editing Scheme == &lt;br /&gt;
&lt;br /&gt;
=== Geiser ===&lt;br /&gt;
Geiser is a collection of Emacs major and minor mode, that can help Emacs to communicate to a foreign Scheme interpreter. It provides [[SLIME]]-like support for Racket and Guile. &lt;br /&gt;
&lt;br /&gt;
Example config may look like this:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
(defun turn-on-parenthesis-goodies () (rainbow-delimiters-mode 1) (paredit-mode 1))&lt;br /&gt;
(add-hook 'scheme-mode-hook 'turn-on-parenthesis-goodies)&lt;br /&gt;
(load-file &amp;quot;C:/path-to-geiser/elisp/geiser.el&amp;quot;)&lt;br /&gt;
(setq geiser-active-implementations '(racket))&lt;br /&gt;
(setq geiser-racket-binary &amp;quot;C:/path-to-racket/racket.exe&amp;quot;)&lt;br /&gt;
(require 'quack)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Minor Mode for editing Scheme ==&lt;br /&gt;
&lt;br /&gt;
* [http://mumble.net/~campbell/emacs/paredit.el ParEdit] is a mode for structured editing of [[S-expression]]s. Useful with any Lisp.&lt;br /&gt;
* [https://github.com/jlr/rainbow-delimiters RainbowDelimiters] highlights parentheses, brackets, and braces according to their depth, each level in a different colour. Also available in [[ELPA]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Useful Links ==&lt;br /&gt;
* [http://docs.racket-lang.org/guide/Emacs.html Racket documentation on Emacs as IDE]&lt;br /&gt;
&lt;br /&gt;
[[Category:Lisp]]&lt;/div&gt;</summary>
		<author><name>91.199.35.1</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=Scheme&amp;diff=482</id>
		<title>Scheme</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=Scheme&amp;diff=482"/>
		<updated>2012-03-26T13:13:48Z</updated>

		<summary type="html">&lt;p&gt;91.199.35.1: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Emacs has built-in Scheme Mode. It provides basic features, such as syntax highlighting etc.&lt;br /&gt;
&lt;br /&gt;
[http://www.neilvandyke.org/quack/ Quack] by Neil Van Dyke greatly extends Emacs support for Scheme language. Check the comments in .el file for the installation instructions.&lt;br /&gt;
&lt;br /&gt;
Other goodies may include:&lt;br /&gt;
* [http://mumble.net/~campbell/emacs/paredit.el ParEdit] is a mode for structured editing of S-expressions. Useful with any Lisp.&lt;br /&gt;
* [https://github.com/jlr/rainbow-delimiters RainbowDelimiters] highlights parentheses, brackets, and braces according to their depth, each level in a different colour. Also available in ELPA.&lt;br /&gt;
&lt;br /&gt;
== Racket ==&lt;br /&gt;
[http://www.nongnu.org/geiser/ Geiser] is the mode. Provides [[SLIME]]-like support for Racket and Guile. The site also contains good documentation.&lt;br /&gt;
&lt;br /&gt;
Example config may look like this:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
(defun turn-on-parenthesis-goodies () (rainbow-delimiters-mode 1) (paredit-mode 1))&lt;br /&gt;
(add-hook 'scheme-mode-hook 'turn-on-parenthesis-goodies)&lt;br /&gt;
(load-file &amp;quot;C:/path-to-geiser/elisp/geiser.el&amp;quot;)&lt;br /&gt;
(setq geiser-active-implementations '(racket))&lt;br /&gt;
(setq geiser-racket-binary &amp;quot;C:/path-to-racket/racket.exe&amp;quot;)&lt;br /&gt;
(require 'quack)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Useful Links ==&lt;br /&gt;
* [http://docs.racket-lang.org/guide/Emacs.html Racket documentation on Emacs as IDE]&lt;br /&gt;
&lt;br /&gt;
[[Category:Lisp]]&lt;/div&gt;</summary>
		<author><name>91.199.35.1</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=Scheme&amp;diff=481</id>
		<title>Scheme</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=Scheme&amp;diff=481"/>
		<updated>2012-03-26T13:13:02Z</updated>

		<summary type="html">&lt;p&gt;91.199.35.1: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Emacs has built-in Scheme Mode. It provides basic features, such as syntax highlighting etc.&lt;br /&gt;
&lt;br /&gt;
[http://www.neilvandyke.org/quack/ Quack] by Neil Van Dyke greatly extends Emacs support for Scheme language. Check the comments in .el file for the installation instructions.&lt;br /&gt;
&lt;br /&gt;
Other goodies may include:&lt;br /&gt;
* [http://mumble.net/~campbell/emacs/paredit.el ParEdit] is a mode for structured editing of S-expressions. Useful with any Lisp.&lt;br /&gt;
* [https://github.com/jlr/rainbow-delimiters RainbowDelimiters] highlights parentheses, brackets, and braces according to their depth, each level in a different colour. Also available in elpa.&lt;br /&gt;
&lt;br /&gt;
== Racket ==&lt;br /&gt;
[http://www.nongnu.org/geiser/ Geiser] is the mode. Provides [[SLIME]]-like support for Racket and Guile. The site also contains good documentation.&lt;br /&gt;
&lt;br /&gt;
Example config may look like this:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
(defun turn-on-parenthesis-goodies () (rainbow-delimiters-mode 1) (paredit-mode 1))&lt;br /&gt;
(add-hook 'scheme-mode-hook 'turn-on-parenthesis-goodies)&lt;br /&gt;
(load-file &amp;quot;C:/path-to-geiser/elisp/geiser.el&amp;quot;)&lt;br /&gt;
(setq geiser-active-implementations '(racket))&lt;br /&gt;
(setq geiser-racket-binary &amp;quot;C:/path-to-racket/racket.exe&amp;quot;)&lt;br /&gt;
(require 'quack)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Useful Links ==&lt;br /&gt;
* [http://docs.racket-lang.org/guide/Emacs.html Racket documentation on Emacs as IDE]&lt;br /&gt;
&lt;br /&gt;
[[Category:Lisp]]&lt;/div&gt;</summary>
		<author><name>91.199.35.1</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=Scheme&amp;diff=477</id>
		<title>Scheme</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=Scheme&amp;diff=477"/>
		<updated>2012-03-26T13:09:45Z</updated>

		<summary type="html">&lt;p&gt;91.199.35.1: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Emacs has built-in Scheme Mode. It provides basic features, such as syntax highlighting etc.&lt;br /&gt;
&lt;br /&gt;
[http://www.neilvandyke.org/quack/ Quack] by Neil Van Dyke greatly extends Emacs support for Scheme language. Check the comments in .el file for the installation instructions.&lt;br /&gt;
&lt;br /&gt;
Other goodies may include:&lt;br /&gt;
* [http://mumble.net/~campbell/emacs/paredit.el ParEdit] is a mode for structured editing of S-expressions. Useful with any Lisp.&lt;br /&gt;
* [https://github.com/jlr/rainbow-delimiters RainbowDelimiters] highlights parentheses, brackets, and braces according to their depth, each level in a different colour.&lt;br /&gt;
&lt;br /&gt;
== Racket ==&lt;br /&gt;
[http://www.nongnu.org/geiser/ Geiser] is the mode. Provides [[SLIME]]-like support for Racket and Guile. The site also contains good documentation.&lt;br /&gt;
&lt;br /&gt;
Example config may look like this:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
(defun turn-on-parenthesis-goodies () (rainbow-delimiters-mode 1) (paredit-mode 1))&lt;br /&gt;
(add-hook 'scheme-mode-hook 'turn-on-parenthesis-goodies)&lt;br /&gt;
(load-file &amp;quot;C:/path-to-geiser/elisp/geiser.el&amp;quot;)&lt;br /&gt;
(setq geiser-active-implementations '(racket))&lt;br /&gt;
(setq geiser-racket-binary &amp;quot;C:/path-to-racket/racket.exe&amp;quot;)&lt;br /&gt;
(require 'quack)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Useful Links ==&lt;br /&gt;
* [http://docs.racket-lang.org/guide/Emacs.html Racket documentation on Emacs as IDE]&lt;br /&gt;
&lt;br /&gt;
[[Category:Lisp]]&lt;/div&gt;</summary>
		<author><name>91.199.35.1</name></author>
	</entry>
</feed>