1
0
Fork 0

Merging upstream version 1.30.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-04-21 09:44:12 +02:00
parent 1b2f180fc6
commit 1fa9e0bfa5
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
11 changed files with 125 additions and 17 deletions

View file

@ -20,6 +20,7 @@ from mycli.packages.prompt_utils import confirm_destructive_query
TIMING_ENABLED = False
use_expanded_output = False
force_horizontal_output = False
PAGER_ENABLED = True
tee_file = None
once_file = None
@ -97,6 +98,14 @@ def set_expanded_output(val):
def is_expanded_output():
return use_expanded_output
@export
def set_forced_horizontal_output(val):
global force_horizontal_output
force_horizontal_output = val
@export
def forced_horizontal():
return force_horizontal_output
_logger = logging.getLogger(__name__)