119 lines
5.4 KiB
HTML
119 lines
5.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<!-- This manual documents Guile version 3.0.10.
|
|
|
|
Copyright (C) 1996-1997, 2000-2005, 2009-2023 Free Software Foundation,
|
|
Inc.
|
|
|
|
Copyright (C) 2021 Maxime Devos
|
|
|
|
Copyright (C) 2024 Tomas Volf
|
|
|
|
|
|
Permission is granted to copy, distribute and/or modify this document
|
|
under the terms of the GNU Free Documentation License, Version 1.3 or
|
|
any later version published by the Free Software Foundation; with no
|
|
Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A
|
|
copy of the license is included in the section entitled "GNU Free
|
|
Documentation License." -->
|
|
<title>Using Guile in Emacs (Guile Reference Manual)</title>
|
|
|
|
<meta name="description" content="Using Guile in Emacs (Guile Reference Manual)">
|
|
<meta name="keywords" content="Using Guile in Emacs (Guile Reference Manual)">
|
|
<meta name="resource-type" content="document">
|
|
<meta name="distribution" content="global">
|
|
<meta name="Generator" content=".texi2any-real">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
|
|
<link href="index.html" rel="start" title="Top">
|
|
<link href="Concept-Index.html" rel="index" title="Concept Index">
|
|
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
|
<link href="Programming-in-Scheme.html" rel="up" title="Programming in Scheme">
|
|
<link href="Using-Guile-Tools.html" rel="next" title="Using Guile Tools">
|
|
<link href="Using-Guile-Interactively.html" rel="prev" title="Using Guile Interactively">
|
|
<style type="text/css">
|
|
<!--
|
|
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
|
span:hover a.copiable-link {visibility: visible}
|
|
ul.mark-bullet {list-style-type: disc}
|
|
-->
|
|
</style>
|
|
<link rel="stylesheet" type="text/css" href="https://www.gnu.org/software/gnulib/manual.css">
|
|
|
|
|
|
</head>
|
|
|
|
<body lang="en">
|
|
<div class="section-level-extent" id="Using-Guile-in-Emacs">
|
|
<div class="nav-panel">
|
|
<p>
|
|
Next: <a href="Using-Guile-Tools.html" accesskey="n" rel="next">Using Guile Tools</a>, Previous: <a href="Using-Guile-Interactively.html" accesskey="p" rel="prev">Using Guile Interactively</a>, Up: <a href="Programming-in-Scheme.html" accesskey="u" rel="up">Programming in Scheme</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html" title="Index" rel="index">Index</a>]</p>
|
|
</div>
|
|
<hr>
|
|
<h3 class="section" id="Using-Guile-in-Emacs-1"><span>4.5 Using Guile in Emacs<a class="copiable-link" href="#Using-Guile-in-Emacs-1"> ¶</a></span></h3>
|
|
|
|
<a class="index-entry-id" id="index-Emacs"></a>
|
|
<p>Any text editor can edit Scheme, but some are better than others. Emacs
|
|
is the best, of course, and not just because it is a fine text editor.
|
|
Emacs has good support for Scheme out of the box, with sensible
|
|
indentation rules, parenthesis-matching, syntax highlighting, and even a
|
|
set of keybindings for structural editing, allowing navigation,
|
|
cut-and-paste, and transposition operations that work on balanced
|
|
S-expressions.
|
|
</p>
|
|
<p>As good as it is, though, two things will vastly improve your experience
|
|
with Emacs and Guile.
|
|
</p>
|
|
<a class="index-entry-id" id="index-Paredit"></a>
|
|
<p>The first is Taylor Campbell’s
|
|
<a class="uref" href="http://www.emacswiki.org/emacs/ParEdit">Paredit</a>. You should not
|
|
code in any dialect of Lisp without Paredit. (They say that
|
|
unopinionated writing is boring—hence this tone—but it’s the
|
|
truth, regardless.) Paredit is the bee’s knees.
|
|
</p>
|
|
<a class="index-entry-id" id="index-Geiser"></a>
|
|
<p>The second is
|
|
José
|
|
Antonio Ortega Ruiz’s
|
|
<a class="uref" href="http://www.nongnu.org/geiser/">Geiser</a>. Geiser complements Emacs’
|
|
<code class="code">scheme-mode</code> with tight integration to running Guile processes via
|
|
a <code class="code">comint-mode</code> REPL buffer.
|
|
</p>
|
|
<p>Of course there are keybindings to switch to the REPL, and a good REPL
|
|
environment, but Geiser goes beyond that, providing:
|
|
</p>
|
|
<ul class="itemize mark-bullet">
|
|
<li>Form evaluation in the context of the current file’s module.
|
|
</li><li>Macro expansion.
|
|
</li><li>File/module loading and/or compilation.
|
|
</li><li>Namespace-aware identifier completion (including local bindings, names
|
|
visible in the current module, and module names).
|
|
</li><li>Autodoc: the echo area shows information about the signature of the
|
|
procedure/macro around point automatically.
|
|
</li><li>Jump to definition of identifier at point.
|
|
</li><li>Access to documentation (including docstrings when the implementation
|
|
provides it).
|
|
</li><li>Listings of identifiers exported by a given module.
|
|
</li><li>Listings of callers/callees of procedures.
|
|
</li><li>Rudimentary support for debugging and error navigation.
|
|
</li><li>Support for multiple, simultaneous REPLs.
|
|
</li></ul>
|
|
|
|
<p>See Geiser’s web page at <a class="uref" href="http://www.nongnu.org/geiser/">http://www.nongnu.org/geiser/</a>, for more
|
|
information.
|
|
</p>
|
|
|
|
</div>
|
|
<hr>
|
|
<div class="nav-panel">
|
|
<p>
|
|
Next: <a href="Using-Guile-Tools.html">Using Guile Tools</a>, Previous: <a href="Using-Guile-Interactively.html">Using Guile Interactively</a>, Up: <a href="Programming-in-Scheme.html">Programming in Scheme</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html" title="Index" rel="index">Index</a>]</p>
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
</html>
|