summaryrefslogtreecommitdiff
path: root/elisp
AgeCommit message (Collapse)Author
2021-11-27Customizable next-error on evaluation errorsjao
Set to nil by default, which might surprise some users, if we had enough :)
2021-11-24Indentation for srfi-64's test-groupjao
2021-11-21New geiser-mode command: geiser-exit-repljao
Useful specially for REPLs including a debugger, where you might want to exit it from a scheme buffer. Bound by default to C-c C-q.
2021-11-20Fix: allow implementations to tell us if they entered their debuggerjao
We were always displaying the debug buffer, regardless, which is not what we want: upon entering a debugger, we switch to the repl, and all the needed info is already there.
2021-10-03Version bump (0.18)0.18jao
2021-08-08Version bump (0.17)0.17jao
2021-04-28There is no session (fixes #22)jao
2021-04-21Use defvar-localJonas Bernoulli
It is available since Emacs 24.3 and we already depend on Emacs 24.4.
2021-04-21Version bump0.16jao
2021-04-19Fix for the fix (avoid popping up on empty output strings)jao
2021-04-19Fix for output display in schemes not defining their own handlerjao
See discussion in issue #21.
2021-04-16Version bump (0.15)0.15jao
2021-04-16New public api for registering file extensionsjao
2021-04-16fix for doom emacsChris McClellen
2021-04-11Fix for ANSI color treatmentsjao
2021-04-10autoload cookie for geiser-eval-load-pathjao
2021-04-10Simpler error reporting for symbol lookup failuresjao
2021-04-09cl-case with an eval-when-compilejao
2021-04-09Optionally treat ANSI colors in dbg bufferjao
This is controlled by the new customizable variable geiser-debug-treat-ansi-colors, which can be set to either nil (do nothing), 'colors (fontify colors) or 'remove (just strip all ANSI codes).
2021-04-09Version bump (0.14)jao
2021-04-05autoload geiser activate implementation0.14jao
2021-04-04stale geiser-install references removed0.13jao
2021-04-04duplicated commetary section gonejao
2021-04-04proper ELPA header for geiser.eljao
2021-04-04empty geiser-active-implementationsjao
2021-04-04geiser.el: autoloads removedjao
2021-03-07geiser-messages-mode: Don't quote lambda expressionsJonas Bernoulli
2021-02-15Determine the display string of command key dynamically.Zhu Zihao
* elisp/geiser-repl.el(geiser-repl--sentinel): Use `substitute-command-keys'.
2020-12-02Add doc-string to geiser-custom--defcustomJonas Bernoulli
Also add a FIXME comment about how this macro isn't actually needed.
2020-12-02Improve doc-strings of some optionsJonas Bernoulli
The whole first sentence should fit on the first line. If that makes the line a bit long then that is unfortunate but better than wrapping it onto a new line. When wrapping onto a new line anyway then the second line should never be intended. When it can be avoided, then long first lines should be made shorter.
2020-12-02Declare keymaps using defvar explicitlyJonas Bernoulli
This makes it possible to re-evaluate the containing buffers without user customizations being clobbered.
2020-12-02Placate byte compiler (Brian Leung)jao
2020-12-02Support buffer-local binary and arglist configurationjao
2020-07-19the long road to doc updates starts with one commitjao
2020-07-19scheme and autotools removalsjao
The plan is to have geiser-core contain only, well, the elisp core engine. The autotools scafolding is no really worth it, so it's gone too (and in the process, i'll look younger).
2020-07-12Always display error in minibuffer after evalAaron Marks
When evaluating expressions in a Scheme buffer, display the error of an evaluation in the minibuffer regardless of whether `geiser-debug-show-debug-p` or `geiser-debug-jump-to-debug-p` are set or not.
2020-07-06Tag project functions instead of overriding docsAndrew Whatson
2020-07-06Fix byte-compiler warningAndrew Whatson
2020-07-06Improve project function selection, make ignore defaultAndrew Whatson
2020-07-06Refactor to make repl/impl proj argument optionalAndrew Whatson
2020-07-06Use a separate REPL instance per projectAndrew Whatson
2020-07-06Returning C-c k back to users, that key's theirs!Jose Antonio Ortega Ruiz
Should close issue #315, where it is pointed out that "sequences consisting of `C-c` and a letter (either upper or lower case) are reserved for users; they are the *only* sequences reserved for users, so do not block them."
2020-05-10Better handcrafted reader, now with numbers!Jose Antonio Ortega Ruiz
For no good reason, we were transforming numbers in retorts to symbols and then failing to recognise things like line or column numbers there. The "fix" here only works for the intersection of numbers that are written in the same way in elisp and scheme; one day we'll find a situation where this doesn't cut it, but right now we only really use integers.
2020-05-10Completion for vanilla usersJose Antonio Ortega Ruiz
Restoring what seem reasonable definitions for the completion functions when called away from the current buffer. Should fix issue
2020-04-26Fix typosJonas Bernoulli
2020-04-06Chop off trailing whitespace before printing REPL resultPhilip K
2020-03-27Use cl-lib instead of clJonas Bernoulli
Starting with Emacs 27 cl is fully deprecated, including at compile-time.
2020-03-27Declare geiser-restart-repl in geiser-compile.elJonas Bernoulli
2020-03-27Fix indentationJonas Bernoulli
2020-03-27Mark the beginning of code part of elisp libraries with Code: headingJonas Bernoulli
It's the convention and by following it we make a big step towards supporting outline navigation. The convention doesn't say much about what parts of the code are supposed to be part of that sections and what parts belong in a subsequent section. Here we put the `require' forms in this section and maybe some setup code, that's a popular approach. In most cases there was " " where we now insert "Code:". They both serve a similar purpose and we keep the former because some users depend on that for navigation. We even add this " " in libraries where it previously was missing. In some cases the permission statement was followed by a commentary, which obviously does not belong in the "Code:" section. In such cases add the conventional "Commentary:" section.