diff options
author | umarcor <unai.martinezcorral@ehu.eus> | 2021-02-01 09:03:57 +0100 |
---|---|---|
committer | umarcor <unai.martinezcorral@ehu.eus> | 2021-02-01 09:03:57 +0100 |
commit | 9c421e8524668f9ee06f5e9c2e3aa7c8e7dd7519 (patch) | |
tree | a50c9d3b0fab98afbac996ac6da6c6b90e9c60ff | |
parent | 1484b0c27fd654200b23f7a3afc5f4f256314a2b (diff) | |
download | ghdl-9c421e8524668f9ee06f5e9c2e3aa7c8e7dd7519.tar.gz ghdl-9c421e8524668f9ee06f5e9c2e3aa7c8e7dd7519.tar.bz2 ghdl-9c421e8524668f9ee06f5e9c2e3aa7c8e7dd7519.zip |
doc: add ref to ghdl-language-server from ghdl-ls
-rw-r--r-- | pyGHDL/cli/lsp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyGHDL/cli/lsp.py b/pyGHDL/cli/lsp.py index 9d4e83eba..44d55635d 100644 --- a/pyGHDL/cli/lsp.py +++ b/pyGHDL/cli/lsp.py @@ -62,7 +62,7 @@ def __rotate_log_files(basename: str, num: int): def _generateCLIParser() -> ArgumentParser: """Creates an CLI argument parser based on ``argparse``.""" - parser = ArgumentParser(description="VHDL Language Protocol Server") + parser = ArgumentParser(description="VHDL Language Protocol Server. Find info about clients in `ghdl/ghdl-language-server <https://github.com/ghdl/ghdl-language-server>`__.") parser.add_argument( "--version", "-V", action="version", version="%(prog)s " + version.__version__ ) @@ -77,7 +77,7 @@ def _generateCLIParser() -> ArgumentParser: parser.add_argument( "--disp-config", action="store_true", - help="Disp installation configuration and exit", + help="Display installation configuration and exit", ) return parser |