cmm: added options '--tight' and '--no-paging' to the 'hist --print' cmd

This commit was merged in pull request #16.
This commit is contained in:
2023-10-01 10:22:26 +02:00
parent 8f56399844
commit 3ea1f49027
4 changed files with 11 additions and 4 deletions
+3 -1
View File
@@ -57,7 +57,9 @@ def print_chat(args: argparse.Namespace, config: Config) -> None:
Path(config.db),
mfilter=mfilter)
chat.print(args.source_code_only,
args.with_metadata)
args.with_metadata,
paged=not args.no_paging,
tight=args.tight)
def hist_cmd(args: argparse.Namespace, config: Config) -> None: