Commit Diff


commit - 75fd746bdad45e2d79df0197d626685db74a96d9
commit + 05bc942ed5e21c179729488a7f6a843fc311aad2
blob - c30b7e3163325c8d1e15b7970ec6b6d4fe2b128c
blob + 4fe126ebdeabe18ae3299f5b5e4d58e7d9f4b912
--- ChangeLog
+++ ChangeLog
@@ -1,3 +1,7 @@
+2021-07-23  Omar Polo  <op@omarpolo.com>
+
+	* ui.c (redraw_tabline): changed default tab separator character.  Suggested by Gnuserland, thanks!
+
 2021-07-21  Omar Polo  <op@omarpolo.com>
 
 	* ui.c (print_vline_descr): pretty print help lines
blob - 9abd944ed9c1c3f0bc2c5bbdd1d71d207ffc1d35
blob + 6a045b8a63343f8c9e760e5fb8d8588c0346045b
--- ui.c
+++ ui.c
@@ -557,7 +557,7 @@ redraw_tabline(void)
 
 		wattr_on(tabline, tab_face.background, NULL);
 		if (TAILQ_NEXT(tab, tabs) != NULL)
-			wprintw(tabline, "│");
+			wprintw(tabline, "┃");
 		wattr_off(tabline, tab_face.background, NULL);
 	}