Results 13 issues of 6cdh

**description** In some cases, the semantic of `let` is wrong. I expect it always works like a function, but it isn't. **reproduce** ```fennel (and false (not (let [] (print 1)...

bug

**Description** Too many local variables if there are too many functions in a table. **Reproduce** Compile this code ```fennel [#1, #1, ..., #1] ; 200+ times ``` **Result** ```lua local...

enhancement

Drracket silently reach 100% CPU when open a file with infinity recursion macro: ```racket #lang racket (define-syntax (f stx) stx) f ``` It goes back to normal if I fix...

good first issue

It would be better to have the ability to control which functions are executed and which are not in the `drracket/check-syntax` library. The motivation is that certain functions, such as...

I'd like to introduce an experimental refactor of langserver. It aims to fix some issues and simplify development of new features. ## Motivation 1. Some issues (#101, #102) relate to...

This is a tracking issue for [Chicken Scheme](https://call-cc.org/) support. The specific syntax can be found at [Chicken Scheme Syntax](https://wiki.call-cc.org/man/5/Extensions%20to%20the%20standard). Chicken Scheme support R5RS with extension: - [x] Identifier between `|`...

This is a tracking issue for [Chez Scheme](https://github.com/cisco/ChezScheme) support. It supports R6RS. The specific syntax can be found at [Chez Scheme Syntax](https://cisco.github.io/ChezScheme/csug9.5/intro.html#./intro:h1). - [ ] extended identifier - [x] Identifiers...

This is a tracking issue for [Guile Scheme](https://www.gnu.org/software/guile/) support. It supports R5RS, part R6RS and R7RS. Their formal grammar can be found at [R5RS Lexical structure section](https://www.gnu.org/software/guile/manual/r5rs/Lexical-structure.html#Lexical-structure), and [R6RS support](https://www.gnu.org/software/guile/manual/guile.html#R6RS-Support),...

Normally, I can use the shortcuts to jump between top level nodes. But sometimes the cursor stops on the blank line which does not belong to any syntax node, then...