From 910d1ed70ea124fa9a4ca7d8e490bcde2135c030 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Sun, 6 Nov 2016 21:29:40 +0100 Subject: vis: change default status bar indication for Windows style line endings --- vis-lua.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vis-lua.c') diff --git a/vis-lua.c b/vis-lua.c index 7e40585..efcc998 100644 --- a/vis-lua.c +++ b/vis-lua.c @@ -53,8 +53,8 @@ static void window_status_update(Vis *vis, Win *win) { vis_macro_recording(vis) ? " @": ""); left_count++; - if (text_newline_type(txt) != TEXT_NEWLINE_LF) - strcpy(right_parts[right_count++], "␊"); + if (text_newline_type(txt) == TEXT_NEWLINE_CRLF) + strcpy(right_parts[right_count++], "␍␊"); int cursor_count = view_cursors_count(view); if (cursor_count > 1) { -- cgit v1.2.3