flutter-code-editor
flutter-code-editor copied to clipboard
Flutter Code Editor is a multi-platform code editor supporting syntax highlighting, code blocks folding, autocompletion, read-only code blocks, hiding specific code blocks, themes, and more.
Please allow me to override the gutter error icon. Currently, it's hardcoded in `lib/src/gutter/error.dart` and cannot be changed because I cannot provide my own `GutterErrorWidget`, or even better, provide three...
I would like to implement a "dedent on backspace" but it seems a `CodeModifier` that wants to register itself on `'\b'` doesn't work. I checked that the backspace key is...
Please support your `CodeField.wrap` property which currently seems to do nothing. This is the only feature I really need from an editor so it is rather unfortunate that after I...
I'd like to provide code completion after the user enters ` >> `. Currently, there seems to be no easy way to achieve this. There's a hardcoded `AutoCompleter` in `CodeController`...
The current problems with suggestions: - ~~They cannot be disabled~~, #206 - CodeController is aware of them by owning PopupController and commanding it. - They are generally poorly designed because...
- Resolves #211
Foldable block doesn't fold correctly when there is another foldable block at the end of the first
Initial code: When folding at 3, the start of the next foldable block also becomes hidden: