YoYoGames / GameMaker-Bugs

Public tracking for GameMaker bugs
22 stars 8 forks source link

Working with notes #2869

Open sinigrimi opened 11 months ago

sinigrimi commented 11 months ago

Is your feature request related to a problem?

I would like to keep a checklist directly in gamemaker notes without using third-party sites/applications, but in GMS notes you cannot make expandable blocks like #region or {} and this causes my checklist to become overgrown with a gigantic amount of non-collapsible information

Describe the solution you'd like

I want to see functions for collapsing/expanding text and checkboxes in notes. This will already be enough to avoid using third-party sites

Describe alternatives you've considered

No response

Additional context

No response

thennothinghappened commented 6 months ago

With notes getting markdown for the new code editor could support <details>, and you get these:

<details>
<summary>Collapsible block</summary>

- [ ] Checklist entry
- [x] Something else

</details>
Collapsible block - [ ] Checklist entry - [x] Something else

It'd be really cool to get the full range of markdown extensions from various flavours imo, like GitHub's note, among others:

> [!NOTE]
> Please note!

[!NOTE] Please note!