akvelon / flutter-code-editor

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.
https://akvelon.com
Apache License 2.0
197 stars 47 forks source link

Backspace does not work before a folded block #248

Closed alexeyinkin closed 1 year ago

alexeyinkin commented 1 year ago

Use this code:

import argparse
import os

def fn(argv=None):
  pass

Fold the imports. Navigate to the 2nd blank line. Press backspace.

Expected: The line is deleted. Actual: Cursor moves one line up.

alexeyinkin commented 1 year ago