Skip to content

Commit

Permalink
[Bugfix] Fix zee-editor#79
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmatthes authored Aug 1, 2022
1 parent 08c9f31 commit a7b226f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zee/src/components/buffer/status_bar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ impl Component for StatusBar {
" {one_based_line_index:>3}:{column_offset:>2} ",
one_based_line_index = current_line_index + 1
);
canvas.append_end(theme.is_not_modified, &line_status)
canvas.append_end(theme.position_in_file, &line_status)
})
// Name of the current mode
.and_then(|canvas| canvas.append_start(theme.mode, &format!(" {}", mode.name)))
Expand Down

0 comments on commit a7b226f

Please sign in to comment.