Patch path complete and read char lisp function
Build project / build (push) Has been cancelled

This commit is contained in:
arthur
2025-11-07 16:23:56 +01:00
parent 5588b0a8d7
commit c06c820dfb
4 changed files with 16 additions and 2 deletions
+6
View File
@@ -166,3 +166,9 @@ Lisp editorFind_L(Lisp args, LispError *e, LispContext ctx) {
editorFind();
return lisp_null();
}
Lisp editorReadChar_L(Lisp args, LispError *e, LispContext ctx) {
fprintf(stderr, "char read : %c\n", E.row[E.cursor_y].render[E.cursor_x]);
return lisp_make_char(E.row[E.cursor_y].render[E.cursor_x]);
}