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.

Home Page:https://akvelon.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Backspace does not work before a folded block

alexeyinkin opened this issue · comments

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.