aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/conf.py6
-rw-r--r--pyGHDL/cli/lsp.py2
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 7eaf6c9e1..20b75ff6e 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -49,8 +49,8 @@ master_doc = 'index'
# The suffix(es) of source filenames.
source_suffix = {
'.rst': 'restructuredtext',
- # '.txt': 'markdown',
- '.md': 'markdown',
+# '.txt': 'markdown',
+# '.md': 'markdown',
}
# Add any paths that contain templates here, relative to this directory.
@@ -184,7 +184,7 @@ extensions = [
'btd.sphinx.inheritance_diagram',
# Other extensions
- 'recommonmark',
+# 'recommonmark',
'exec',
# 'DocumentMember',
'sphinx_fontawesome',
diff --git a/pyGHDL/cli/lsp.py b/pyGHDL/cli/lsp.py
index 3245bbfa2..d81ba863b 100644
--- a/pyGHDL/cli/lsp.py
+++ b/pyGHDL/cli/lsp.py
@@ -73,7 +73,7 @@ def _generateCLIParser() -> ArgumentParser:
parser.add_argument(
"--log-file", help="Redirect logs to the given file instead of stderr"
)
- parser.add_argument("--trace-file", help="Save RPC data to FILE.in and FILE.out (overrides :env:`GHDL_LS_TRACE`)")
+ parser.add_argument("--trace-file", help="Save RPC data to FILE.in and FILE.out (overrides :envvar:`GHDL_LS_TRACE`)")
parser.add_argument("--input", "-i", help="Read request from file")
parser.add_argument(
"--disp-config",