Basic indentation support

This commit is contained in:
2025-12-18 18:55:08 +00:00
parent f347f50dbe
commit d5145d88a7
4 changed files with 84 additions and 7 deletions

View File

@@ -6,11 +6,6 @@ A TUI IDE.
# TODO
- [ ] Add feature where doing enter uses tree-sitter to add newline with indentation.
- it should also put stuff like `}` on the next line.
- [ ] Add the highlight of block edges when cursor is on a bracket (or in).
- [ ] Add this thing where selection double click on a bracket selects whole block.
- (only on the first time) and sets mode to `WORD`.
- [ ] Add support for virtual cursor where edits apply at all the places.
- [ ] Add alt + click to set multiple cursors.
- [ ] Add search / replace along with search / virtual cursors are searched pos.
@@ -23,4 +18,16 @@ A TUI IDE.
- [ ] Add git stuff.
- [ ] Fix bug where alt+up at eof adds extra line.
- [ ] Think about how i would keep fold states sensical if i added code prettying.
- [ ] Retry get proper blocks from tree-sitter.
- And use it for full block selection (including inline ones).
- And for indenting.
- And highlighting block edges etc.
- [ ] Add feature where doing enter uses tree-sitter to add newline with indentation.
- it should also put stuff like `}` on the next line.
- [ ] Add the highlight of block edges when cursor is on a bracket (or in).
- [ ] Add this thing where selection double click on a bracket selects whole block.
- (only on the first time) and sets mode to `WORD`.
- [ ] Redo folding system and its relation to move_line_* functions.
- [ ] Also try regex based indentation.
- [ ] And indentation based blocks