Skip to content

Commit

Permalink
Merge pull request #45 from dantefromhell/patch-3
Browse files Browse the repository at this point in the history
Show 'ignore_list' in status
  • Loading branch information
jhidding authored Apr 28, 2024
2 parents 26fbeec + 269da38 commit 6333825
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions entangled/commands/status.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ def rich_status():
config_table.add_row(
"Watch list", ", ".join(f"'{pat}'" for pat in config.watch_list)
)
config_table.add_row(
"Ignore list", ", ".join(f"'{pat}'" for pat in config.ignore_list)
)
config_table.add_row("Hooks enabled", ", ".join(config.hooks))

console = Console(color_system="auto")
Expand Down

0 comments on commit 6333825

Please sign in to comment.