racket: C-u C-c C-z on a submodule enters it
[geiser.git] / NEWS
blobf282c76c7788957a8edd9cf381f65102a60dc0c8
1 * Version 0.5 ()
3   New features:
5    - New commands geiser-eval-buffer (C-c C-b) and
6      geiser-eval-buffer-and-go (C-c M-b), by Nick Parker.
7    - Pressing return on a previous expression in the REPL will resend
8      it, by Darren Hoo.
9    - Improvements to syntax highlighting (define/match in racket).
12   Bug fixes:
14    - Autodoc for Guile 2.0.9+'s subr fixed, thanks to Ludovic Courtès.
16 * Version 0.4 (May 2, 2013)
18   New features:
20    - New command geiser-insert-lambda, bound to C-c \ in Scheme
21      buffers (thanks to Ray Racine).
22    - Configurable case-sensitivity when highlighting keywords (thanks
23      to Diogo F.S. Ramos), via geiser-guile-case-sensitive-p and
24      geiser-racket-case-sensitive-pp
25    - C-u C-x C-e to insert evaluation result in buffer (thanks to
26      Diogo).
27    - New flag geiser-repl-query-on-kill-p to control whether emacs
28      will ask for confirmation before killing a buffer with a live
29      REPL process.
30    - New flag geiser-mode-start-repl-p to tell Geiser to start a new
31      REPL if one isn't active when geiser-mode is activated.
33   Bug fixes:
35    - Filename completion should also work in emacs 23.2 now.
36    - Racket filenames with spaces no longer break Geiser when entering
37      them (thanks to Diogo).
38    - The REPL no longer hangs when company-mode is active (thanks to
39      Aleix Conchillo).
40    - Help manual lookup in Racket fixed for #lang racket/base modules.
42 * Version 0.3 (Jan 19, 2013)
44   New features:
46    - TAB in a string context in the REPL and Scheme buffers triggers
47      filename completion.
48    - User manual lookup command (C-c C-d i) available also in the
49      REPL.
50    - New REPL command, geiser-repl-clear-buffer (C-c M-o), to remove
51      all scheme output (thanks to Jonas Rodrigues).
52    - Indentation of scheme forms improved..
54   Bug fixes:
56    - Racket: fixes for problems entering modules sans main.rkt.
57    - Racket: image support in Windows fixed.
59 * Version 0.2.2 (Sep 30, 2012)
61    - ELPA support.  We have now ELPA packages.  Thanks to Grant Rettke
62      and Daniel Hackney.
64 * Version 0.2.1 (Sep 15, 2012)
66   Bug fixes:
68    - Racket: correctly reloading modules that contain submodules (this
69      one was breaking for instance code based on plai-typed).
70    - Racket: correctly jumping to symbols defined in files with .ss
71      extension.
73   New features:
75    - Racket: autodoc now displays argument names for constructors
76      defined by define-type (from either plai or plai-type).
77    - Racket: the included geiser-racket.sh script takes a new switch,
78      -n, to specify the network interface to listen to.
80 * Version 0.2 (Sep 3, 2012)
82   New features:
84    - Support for images in Racket, both in the REPL and during
85      evaluations.  Thanks to Michael Wilber for code, discussion and
86      testing.
87    - Support for Racket 5.3.  Older Rackets not actively supported.
88    - ,cd command in Racket's REPL.
89    - New customizable variable, geiser-guile-manual-lookup-nodes, to
90      specify the name of Guile's info nodes, if need be.
92   Bug fixes:
94    - We don't deactivate autodoc in the REPL unless requested.
95    - Indentation for syntax-id-rules and for/hash.
96    - Highlighting of [else forms in scheme buffers.
97    - Indentation for all 'for' forms in Racket.
98    - Correctly buttonizing paths with leading spaces in DBG buffers
99    - Autodoc was being deactivated in REPLs.
101 * Version 0.1.4 (Nov 26, 2011)
103   New features:
105    - Indentation for Racket's splicing-let and friends.
106    - Customizable prompt waiting time (geiser-repl-startup-time).
107    - New customizable faces: geiser-font-lock-repl-prompt and
108      geiser-font-lock-repl-input.
110   Bug fixes:
112    - C-c C-r and friends won't send unbalanced sexps to Scheme.
113    - C-c C-z works after run-geiser in a Scheme buffer.
114    - REPL: TAB indenting around whitespace.
115    - Racket: correct display of output to standard error (such as
116      rackunit's).
117    - Guile: ditto.
118    - Elisp: compatibility problems with filladapt fixed.
119    - Racket: autodoc in R5RS modules.
121 * Version 0.1.3 (Jun 24, 2011)
123   Bug fixes:
125     - The REPL doesn't break when one calls read (fixes bug #33090).
126     - In Guile buffers, C-c C-a (a.k.a C-u C-c C-z) recognizes the
127       current module even before the define-module form (fixes bug
128       #33497).
129     - Racket can now use the GUI libraries (see bug #32844).
130     - Texinfo formatting fixes.
132 * Version 0.1.2 (Mar 9, 2011)
134   New features:
136     - New C-c C-e C-l (or C-c C-r in REPL) to add a directory to
137       Scheme's load path.
138     - Guile 2.0 as lowest Guile version supported.
139     - New custom variable, geiser-guile-load-init-file-p, to allow
140       loading of ~/.guile.
142   Bug fixes:
144     - We no longer ignore geiser-repl-use-other-window.
145     - Company mode integration fixes (including #32231).
146     - M-x geiser-edit-module in REPL buffers fixed.
147     - We now respect user customizations of geiser-implementations-alist.
148     - Interaction with Guile's debugger fixed.
149     - "Clickable" paths in warnings buffer also for Guile 2.0.
150     - Fix for errors when entering r5rs modules in Racket.
152 * Version 0.1.1 (Jan 24, 2011)
154   New features:
156     - "Manual autodoc" command; C-c C-d s.
157     - Autodoc retrieval is now asynchronous, for better behaviour in
158       remote connections.
159     - New C-c C-a to switch to REPL and enter module (C-c C-Z was broken).
160     - Racket: ',enter "foo"' as a synonym of ',enter (file "foo")'.
161     - Documentation typos, and grammar and layout fixes.
164   Bug fixes:
166     - Avoiding *spurious* buffers in case of communication errors.
167     - REPL: fixed problem with input history navigation in Racket.
168     - Autodoc no longer skips non-alphanumeric identifiers.
169     - Autodoc messages no longer interfere with active minibuffer.
170     - Fix for module name completion in Guile.
171     - Quack compatibility: avoiding problems with #f &c.
174 * Version 0.1 (Dec 20, 2010)
176   Initial release.