Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update and load styledstrings #51869

Merged
merged 2 commits into from
Feb 1, 2024

Commits on Feb 1, 2024

  1. Update StyledStrings version

    This gets us two particular commits of interest:
    - Replace within-module eval with hygienic eval: which makes it possible
      to include StyledStrings in the sysimage without running into
      precompile errors.
    - Load the JULIA_*_COLOR env vars for compat: which mirrors the current
      behaviour to the relevant faces.
    tecosaur committed Feb 1, 2024
    Configuration menu
    Copy the full SHA
    1552116 View commit details
    Browse the repository at this point in the history
  2. Load StyledStrings in REPL

    By loading the StyledStrings stdlib in REPL, we load the privateered
    print/show methods for the Annotated{String,Char} types defined there.
    
    This is nice to have, because it means that styled annotated strings can
    be constructed in Base and elsewhere without loading the StyledStrings
    stdlib, but they will be displayed as intended in the REPL.
    tecosaur committed Feb 1, 2024
    Configuration menu
    Copy the full SHA
    30ccace View commit details
    Browse the repository at this point in the history