@@ -528,8 +528,8 @@ def show_tasks(args) -> int:
528528 expand = True ,
529529 )
530530
531- table .add_column (_t ("ID" ), justify = "right" , style = "dim" , width = 4 )
532- table .add_column (_t ("Priority" ), justify = "left" )
531+ table .add_column (_t ("ID" ), justify = "right" , style = "dim" , width = 4 , no_wrap = True )
532+ table .add_column (_t ("Priority" ), justify = "left" , no_wrap = True )
533533 table .add_column (_t ("Description" ), justify = "left" )
534534
535535 for i , task in enumerate (sorted_tasks , 1 ):
@@ -561,7 +561,7 @@ def show_tasks(args) -> int:
561561 prio_visual = f"[{ color } ]{ filled } [dim]{ empty } [/dim] ({ priority } )[/{ color } ]"
562562 if is_postponed_future :
563563 description_text = Text (
564- f"💤 { description } { postpone_suffix } \u200b { task_type_id } " ,
564+ f"💤 { description } { postpone_suffix } \u2060 { task_type_id } " ,
565565 style = "italic dim" ,
566566 )
567567 elif description in procrastinate_list :
@@ -572,11 +572,11 @@ def show_tasks(args) -> int:
572572 # Make overdue tasks (1 or more days overdue) very striking
573573 is_overdue = age_days is not None and age_days >= 1
574574 description_text = Text (
575- f"⏳ { description } { _format_procrastination_suffix (age_days )} \u200b { task_type_id } " ,
575+ f"⏳ { description } { _format_procrastination_suffix (age_days )} \u2060 { task_type_id } " ,
576576 style = "bold red" if is_overdue else "italic dim" ,
577577 )
578578 else :
579- description_text = Text (f"{ description } \u200b { task_type_id } " )
579+ description_text = Text (f"{ description } \u2060 { task_type_id } " )
580580
581581 table .add_row (str (i ), prio_visual , description_text )
582582
0 commit comments