Add wide character support (tabs/emojis) and other minor fixes

This commit is contained in:
2025-12-12 16:36:36 +00:00
parent 17e8521f6a
commit 7349cfd00a
12 changed files with 405 additions and 360 deletions

View File

@@ -6,8 +6,16 @@ A TUI IDE.
# TODO
- [ ] Fix both scrolling functions / they are absolutely messed up.
- [ ] Change `next_line` to set `out_len` and also re-add `line` to the iterator.
- [ ] Add `hooks` in files that can be set/unset/jumped to.
- [ ] Add support for text selection (slect range / all).
- [ ] Add support for delete key.
- [ ] Add support for ctrl + arrow key.
- [ ] Add support for ctrl + backspace.
- [ ] Add underline highlight for current word and all occurences.
- [ ] Add bg highlight for current line.
- [ ] Add line numbers.
- [ ] Add support for copy/cut/paste.
- [ ] Add mouse support.
- [ ] Add modes for editing - insert, select, normal, etc.
@@ -15,5 +23,8 @@ A TUI IDE.
- [ ] Add feature where doing enter uses tree-sitter to add newline with indentation.
1. it should also put stuff like `}` on the next line.
- [ ] Add support for brackets/quotes to auto-close.
- [ ] Add support for LSP.
- [ ] Add support for virtual cursor where edits apply at all the places.
- [ ] Add search / replace along with search / virtual cursors
- [ ] Add scm files for all the supported languages. (2/14) Done.
- [ ] Add support for wide characters with wrapping.
- [ ] Add codeium/copilot support.