Skip to content

Instantly share code, notes, and snippets.

@ket395
Last active February 10, 2025 21:37
Show Gist options
  • Select an option

  • Save ket395/11151d3aa8d81ed4fd16e37f14de6e6e to your computer and use it in GitHub Desktop.

Select an option

Save ket395/11151d3aa8d81ed4fd16e37f14de6e6e to your computer and use it in GitHub Desktop.
julia 1.11 removed public unicode shortcuts
\quotedblleft
\quotedblright
# both Tab completion sequence(s) are absent. when this happened is unclear b'cos time is finite. Just add it and move on.
link = "https://docs.julialang.org/en/v1.0/manual/unicode-input/#Unicode-Input-1"
# Regression in code is a bug or issue that occurs when new code changes break existing functionality or introduce unintended side effects
julia> Unicode.julia_chartransform('“')
'“': Unicode U+201C (category Pi: Punctuation, initial quote)
# incorrect name it's a double left quote not a neutral quote
using Unicode
# Same. nothing plainly obvious or intuitive can fix this.
cursed = "Truth bro"
#Now even the Julia 1.11 REPL is acting up completions are broken but not enough that the REPL terminates. Or maybe it's the entire software stack that is rotten, SE is a scam.
│ exception =
│ TypeError: in typeassert, expected REPL.REPLCompletions.MethodCompletion, got a value of type REPL.REPLCompletions.TextCompletion
# TODO: ensure your static typed lanugage co-author is not a type theory fanatic.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment