This code:

https://github.com/racket/drracket/blob/master/drracket/drracket/private/syncheck/blueboxes-gui.rkt#L526-L545

builds a tag from a string (and some hints about the module that
exports it). Maybe looking at it and putting a few printfs into will
help? It's called when you move the insertion point around in drracket
(as part of updating the content of the blueboxes).

Robby


On Thu, Jan 14, 2016 at 4:57 PM, Jack Firth <jackhfi...@gmail.com> wrote:
> fetch-blueboxes-strs claims in its documentation it can get the text of a 
> Scribble bluebox, but I have no idea how to actually use it. Attempting to 
> get the bluebox content of "list-ref", the following all either fail or 
> return #f:
>
> (fetch-blueboxes-strs 'list-ref)
> (fetch-blueboxes-strs "list-ref")
> (fetch-blueboxes-strs '(def list-ref))
> (fetch-blueboxes-strs '(def "list-ref"))
> (fetch-blueboxes-strs '(part list-ref))
> (fetch-blueboxes-strs '(part "list-ref"))
> (fetch-blueboxes-strs 'racket/list)
> (fetch-blueboxes-strs "racket/list")
> (fetch-blueboxes-strs '(def racket/list))
> (fetch-blueboxes-strs '(def "racket/list"))
> (fetch-blueboxes-strs '(part racket/list))
> (fetch-blueboxes-strs '(part "racket/list"))
>
> The documentation doesn't include any examples, and the documentation on tags 
> is somewhat scattered and vague, so I'm shooting in the dark here.
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Racket Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to racket-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to