diff --git a/src/lsp_cli/__main__.py b/src/lsp_cli/__main__.py index 1f8307a..6e31eea 100644 --- a/src/lsp_cli/__main__.py +++ b/src/lsp_cli/__main__.py @@ -38,7 +38,11 @@ help="LSP CLI: A command-line tool for interacting with Language Server Protocol (LSP) features.", add_completion=False, rich_markup_mode=None, - context_settings={"help_option_names": ["-h", "--help"]}, + context_settings={ + "help_option_names": ["-h", "--help"], + "max_content_width": 1000, + "terminal_width": 1000, + }, pretty_exceptions_enable=False, pretty_exceptions_show_locals=False, pretty_exceptions_short=False, diff --git a/src/lsp_cli/server.py b/src/lsp_cli/server.py index 7b6fac9..373a433 100644 --- a/src/lsp_cli/server.py +++ b/src/lsp_cli/server.py @@ -11,7 +11,11 @@ help="Manage background LSP server processes.", add_completion=False, rich_markup_mode=None, - context_settings={"help_option_names": ["-h", "--help"]}, + context_settings={ + "help_option_names": ["-h", "--help"], + "max_content_width": 1000, + "terminal_width": 1000, + }, ) console = Console()