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

This commit is contained in:
2023-10-01 10:22:26 +02:00
parent 8f56399844
commit 75823e7db8
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,
dense=args.dense)
def hist_cmd(args: argparse.Namespace, config: Config) -> None: