racket-mode icon indicating copy to clipboard operation
racket-mode copied to clipboard

Emacs major and minor modes for Racket: edit, REPL, check-syntax, debug, profile, and more.

Results 47 racket-mode issues
Sort by recently updated
recently updated
newest added

UPDATE: This description is no longer true. See next comment. Not sure if anything can be done about this, but I thought it was interesting behavior. Using emacs `M-x uncomment`...

enhancement

Question from `nha_` on `#racket`: How to avoid racket-mode indentation messing up at-expressions where the content isn't Lisp code or plain text. For example C code. Below are some quick...

question

Would be nice to have _eldoc_ show something helpful when it comes to Racket macros. Probably impossible in general maybe there're some reasonable cases that we could cover. Example: ```...

enhancement

In plai-typed, function arguments in definitions look like this: ``` (define (my-function [a : number] [b : symbol]) : (listof symbol) (list 'a 'b 'c)) ``` smart-open-bracket does not handle...

enhancement

I just found `C-c C-.`, which lets me see docs in Emacs rather than a browser. Nice! However, some of the docs have so much indentation that they become difficult...

bug
cannot-reproduce

On `#racket` someone was surprised that a plain racket REPL (not running any file) is `#lang racket/base` instead of `#lang racket` (technically `#lang racket/init`) as with command-line `racket`. Although the...

enhancement

This a proof of concept to use the helm interface to browse the xref entries. There is also a fix to load-collections-xref for my configuration, don't know what is wrong.

When working on a project that's been compiled -- that has `compiled` subdir(s) created by `raco make` or `raco setup` -- eventually you can get this error: ``` link: module...

enhancement

When you use eshell-mode or shell-mode as your main shell, racket and raco command completion is convenient. Emacs use pcomplete for command completion, so I add this. For now, I...

In this little program: ```racket #lang racket (define-syntax when-not (make-rename-transformer #'unless)) (unless #f 42) ``` `racket-xp-mode` reports that `unless` is both "imported from `racket`", _and_, "defined locally": ![arrow-rename-transformer-emacs](https://user-images.githubusercontent.com/265119/187938156-55033a14-6558-416f-ad91-2f0284157fe7.png) Racket Mode...

bug