Add search function
Build project / build (push) Has been cancelled

This commit is contained in:
arthur
2025-11-03 16:45:23 +01:00
parent 6a201b3ebc
commit 419e924650
8 changed files with 44 additions and 2 deletions
+3
View File
@@ -32,4 +32,7 @@ Lisp editorPrintC(Lisp args, LispError *e, LispContext ctx);
Lisp addPackage(Lisp args, LispError *e, LispContext ctx);
Lisp editorDelRow_L(Lisp args, LispError *e, LispContext ctx);
Lisp editorFind_L(Lisp args, LispError *e, LispContext ctx);
#endif
+2
View File
@@ -17,4 +17,6 @@ void editorOpen(char *filename);
void editorSave();
void editorFind();
#endif // FILE_IO_H_
+2
View File
@@ -10,6 +10,8 @@
int editorRowCxToRx(erow *row, int cursor_x);
int editorRowRxToCx(erow *row, int rx);
void editorUpdateRow(erow *row);
void editorInsertRow(int at, char *s, size_t len);