Skip to content

Releases: p4ymak/egui_code_editor

v0.3.1

Choose a tag to compare

@p4ymak p4ymak released this 16 May 10:43
5eb5e45
  • Clickable Hyperlinks
  • Syntax by ref
  • Syntax Patches
  • Preserved Indentation
  • Autocompleter Improvements
  • Optional Hints

v0.2.19

Choose a tag to compare

@p4ymak p4ymak released this 14 Oct 17:20
3284f72

completer

  • Auto-completion
  • egui 0.33

v0.2.2

Choose a tag to compare

@p4ymak p4ymak released this 13 Jan 13:26

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

Choose a tag to compare

@p4ymak p4ymak released this 09 Jan 15:53
0550fca

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.