Made Editor Config global

This commit is contained in:
Arthur Barraux
2025-09-19 14:31:12 +02:00
parent 91e247d1de
commit 8ce621dfde
17 changed files with 235 additions and 215 deletions
+6 -6
View File
@@ -13,16 +13,16 @@
* \brief Draws left rows of the editor.
*/
void editorDrawRows(struct editorConfig *E, struct abuf *ab);
void editorDrawRows(struct abuf *ab);
void editorRefreshScreen(struct editorConfig *E);
void editorRefreshScreen();
void editorScroll(struct editorConfig *E);
void editorScroll();
void editorDrawStatusBar(struct editorConfig *E, struct abuf *ab);
void editorDrawStatusBar(struct abuf *ab);
void editorDrawMessageBar(struct editorConfig *E, struct abuf *ab);
void editorDrawMessageBar(struct abuf *ab);
void editorSetStatusMessage(struct editorConfig *E, const char *fmt, ...);
void editorSetStatusMessage(const char *fmt, ...);
#endif // OUTPUT_H_