CudaText: error in Console, text is folded

  1. do command snippets: install vscode snippets and install “Babylon.js Snippets” for “(none)” lexer.
  2. open new tab, type something and press tab.
  3. look at Console. there will be error, but it will be folded.

image

to unfold, you can type something in Console input and press Enter, or toggle word-wrap in Console’s context menu.

why it is folded? bug?

PS: bug with snippets is another issue, i will open it corresponding repo.

About this issue

  • Original URL
  • State: closed
  • Created 6 months ago
  • Comments: 18 (18 by maintainers)

Commits related to this issue

Most upvoted comments

yes. now it works not only when you clear with menu, but also when clear / remove lines from plugin. i have cuda_silencer, plugin which monitors Console and removes lines which start with some text like: “Loading project:” or “Startup:” or "Detect Indent for ", etc… so at startup my Console is clean. cleaned by plugin likes this:

for line in reversed(range(memo.get_line_count())):
            if line in to_remove:
                memo.replace_lines(line, line, [])

ok. I see repro!