Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/lsp_cli/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
6 changes: 5 additions & 1 deletion src/lsp_cli/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down
Loading