A file-based task manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Revert tsk list whitespace change

Reverts 4f72dc9: keep the tab separator between id and title in tsk list.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

+3 -7
+3 -7
src/main.rs
··· 465 465 { 466 466 if ids_only { 467 467 println!("{}", stack_item.id); 468 + } else if let Some(parsed) = task::parse(&stack_item.title) { 469 + println!("{}\t{}", stack_item.id, parsed.content.trim()); 468 470 } else { 469 - // Pad the id to a fixed width with spaces so the title column lines 470 - // up regardless of the user's tab stops. Width fits up to tsk-9999. 471 - let id = stack_item.id.to_string(); 472 - let title = task::parse(&stack_item.title) 473 - .map(|p| p.content.trim().to_string()) 474 - .unwrap_or_else(|| stack_item.title.trim().to_string()); 475 - println!("{id:<8} {title}"); 471 + println!("{stack_item}"); 476 472 } 477 473 } 478 474 Ok(())