summaryrefslogtreecommitdiff
path: root/editor.c
diff options
context:
space:
mode:
authorcflip <cflip@cflip.net>2023-01-25 11:28:09 -0700
committercflip <cflip@cflip.net>2023-01-25 18:32:43 -0700
commit723876da5741892530cd74112ec1510124e95cf9 (patch)
tree2017e9e488a073b274c485fbd192ba05724c01c7 /editor.c
parent69e2be81c732353f5f89389fec3f9bb768b0766a (diff)
Rename `append_buffer` to textbuf
This name is a little bit better I think, and it will be nice to have a distinction between this utility and the 'file' kind of buffer.
Diffstat (limited to 'editor.c')
-rw-r--r--editor.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/editor.c b/editor.c
index caa2d24..4a489a2 100644
--- a/editor.c
+++ b/editor.c
@@ -260,7 +260,7 @@ void editor_update_screen_size(struct editor_state *editor)
editor->screen_rows -= 2;
}
-void editor_draw_status_bar(struct editor_state* editor, struct append_buffer* buffer)
+void editor_draw_status_bar(struct editor_state* editor, struct textbuf *buffer)
{
char status[80], right_status[80];
int length = snprintf(status, sizeof(status), "%.20s - %d lines %s", editor->filename ? editor->filename : "[New File]", editor->num_lines, editor->dirty ? "(modified)" : "");
@@ -269,24 +269,24 @@ void editor_draw_status_bar(struct editor_state* editor, struct append_buffer* b
if (length > editor->screen_cols)
length = editor->screen_cols;
- ab_append(buffer, status, length);
+ textbuf_append(buffer, status, length);
while (length < editor->screen_cols) {
if (editor->screen_cols - length == right_length) {
- ab_append(buffer, right_status, right_length);
+ textbuf_append(buffer, right_status, right_length);
break;
} else {
- ab_append(buffer, " ", 1);
+ textbuf_append(buffer, " ", 1);
length++;
}
}
- ab_append(buffer, "\n", 1);
+ textbuf_append(buffer, "\n", 1);
}
-void editor_draw_message_bar(struct editor_state* editor, struct append_buffer* buffer)
+void editor_draw_message_bar(struct editor_state* editor, struct textbuf *buffer)
{
if (editor->mode == EDITOR_MODE_INSERT) {
- ab_append(buffer, "--INSERT--", 10);
+ textbuf_append(buffer, "--INSERT--", 10);
return;
}
@@ -296,7 +296,7 @@ void editor_draw_message_bar(struct editor_state* editor, struct append_buffer*
message_length = editor->screen_cols;
if (message_length && time(NULL) - editor->status_message_time < 5)
- ab_append(buffer, editor->status_message, message_length);
+ textbuf_append(buffer, editor->status_message, message_length);
}
void editor_destroy(struct editor_state *editor)