Improve Win2D editor hover feedback

This commit is contained in:
2026-05-09 03:01:26 +02:00
parent e90609bcee
commit 4b581d60b5
3 changed files with 71 additions and 49 deletions

View File

@@ -25,6 +25,7 @@ This repository follows the local `.editorconfig` and the style visible in the c
## Braces And Blocks
- Use braces for multi-line bodies.
- If nesting a for-loop under another for-loop, always include curly braces in the parent for-loop.
- Omit braces for simple single-line embedded statements when readability stays clear.
- Nested control flow with multi-line bodies should use braces at every multi-line level.
- Keep opening braces on the next line for types, methods, properties, accessors, and control blocks.