diff options
-rw-r--r-- | buffer.c | 2 | ||||
-rw-r--r-- | main.c | 3 | ||||
-rw-r--r-- | menu.c | 1 |
3 files changed, 3 insertions, 3 deletions
@@ -711,7 +711,7 @@ void buffer_text_dimensions(TextBuffer *buffer, u32 *lines, u32 *columns) { // which line on screen is the longest? for (u32 l = buffer->first_line_on_screen; l <= buffer->last_line_on_screen && l < buffer->nlines; ++l) { Line *line = &buffer->lines[l]; - longest_line = max_u32(longest_line, line->len); + longest_line = max_u32(longest_line, buffer_index_to_column(buffer, l, line->len)); } *columns = longest_line; } @@ -1,6 +1,5 @@ // @TODO: -// - fix automatic horizontal scrolling - +// - improve word movement // - goto line // - :run -- if .html file, open in browser, otherwise figure out a way of sending a command to shell @@ -48,6 +48,7 @@ static void menu_close(Ted *ted) { break; } ted->menu = MENU_NONE; + ted->selector_open = NULL; } static void menu_escape(Ted *ted) { |