Giter VIP home page Giter VIP logo

Comments (4)

rfindler avatar rfindler commented on June 15, 2024

I think it makes sense to make this change. The code, perhaps confusingly, is in the https://github.com/racket/gui/ repo, tho. This is the code:

https://github.com/racket/gui/blob/master/gui-lib/scribble/private/indentation.rkt

from scribble.

leafac avatar leafac commented on June 15, 2024

@rfindler: Thank you for the reply. I'll look at the code and try to figure it out.

from scribble.

SuzanneSoy avatar SuzanneSoy commented on June 15, 2024

I narrowed down the problem to the determine-spaces function, and I think it is needed to add a case for #\{ like for #\(, but only when the { is not preceeded by an @at-exp{.

I'm having trouble however writing this check, e.g. when I perform (send txt get-backward-sexp prev-posi) on a test which starts with #lang scribble/base it jumps to the a on @at-exp{, but performing get-backward-sexp on a test which deos not start with #lang scribble/base jumps all the way to the @ sign.

So far I got this:

…
[(equal? #\( (send txt get-character prev-posi)) #f]
[(and (equal? #\{ (send txt get-character prev-posi))
                (not (equal? 'text char-classify))
                (not (equal? 'text (send txt classify-position posi)))
                (let* ([prev-maybe-at-sexp
                        (send txt get-backward-sexp prev-posi)]
                       [preceeded-by-at-sexp
                        (or (and prev-maybe-at-sexp
                             (> prev-maybe-at-sexp 0)
                             (is-at-sign? txt (sub1 prev-maybe-at-sexp)))
                            (and prev-maybe-at-sexp
                             (is-at-sign? txt prev-maybe-at-sexp)))])
                  (not preceeded-by-at-sexp)))
           #f]
…

But it fails on a few tests (3) because my check "is this s-expression is preceeded by an @symbol" is unreliable, and I didn't manage to find a way to fix it.

from scribble.

leafac avatar leafac commented on June 15, 2024

@jsmaniac: Thank you for your progress. I get the general idea, but most of the implementation details are going over my head, for now. I'm going to further study and try to get the hang of things.

from scribble.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.