From 913759cbbb245df2c529d8f1fa0080176863017e Mon Sep 17 00:00:00 2001 From: Silas Kraume Date: Sun, 1 Oct 2023 12:48:39 +0200 Subject: [PATCH] set --wordcount visibility --- cat_win/const/argconstants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cat_win/const/argconstants.py b/cat_win/const/argconstants.py index 296f67a9..90f8f8db 100644 --- a/cat_win/const/argconstants.py +++ b/cat_win/const/argconstants.py @@ -89,9 +89,9 @@ def __init__(self, short_form: str, long_form: str, arg_help: str, arg_id: int, ArgConstant('-S', '--SUM', 'ONLY show sum of lines', ARGS_CCOUNT, show_arg=False, section=5), ArgConstant('-w', '--wordcount', 'display the wordcount', - ARGS_WORDCOUNT, section=5), + ARGS_WORDCOUNT, show_arg_on_shell=False, section=5), ArgConstant('-W', '--WORDCOUNT', 'ONLY display the wordcount', - ARGS_WWORDCOUNT, section=5), + ARGS_WWORDCOUNT, show_arg=False, section=5), # search and match ArgConstant('-g', '--grep', 'only show lines containing queried keywords or patterns',