Skip to content

Releases: p4ymak/egui_code_editor

v0.2.2

13 Jan 13:26
Compare
Choose a tag to compare

Changes:

  • Renamed Highlighter to Token
  • Using egui is now a default feature, but it's optional. You can use Token, Syntax and ColorTheme beyond egui, e.g. to make colorful CLI outputs. Add egui_code_editor = { version = "0.2.2" , default-features = false } in your Cargo.toml.
  • Fixed multiline comments behavior.

v0.2.1

09 Jan 15:53
0550fca
Compare
Choose a tag to compare

Updated:

  • Highlighter now returns vector of tokens and can be used beyond egui.
  • Builder pattern methods for Syntax.
  • Demo application with debugger.
  • Tests.
  • egui 0.25.0

Breaking:
Syntax fields are now BTreeSets instead of HashSets.