diff --git a/.gitignore b/.gitignore index 45163bf..9e3ddae 100644 --- a/.gitignore +++ b/.gitignore @@ -108,6 +108,7 @@ venv/ ENV/ env.bak/ venv.bak/ +uv.lock # Spyder project settings .spyderproject diff --git a/README.md b/README.md index 9229f40..49de199 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,27 @@ Use setup.py to install vimdoc in the usual way. On most systems, this is: python setup.py build sudo python setup.py install +Or use `venv` manager + + uv venv + uv pip install setuptools + uv run setup.py config + uv run setup.py build + uv run setup.py install + +... And add wrapper script to `PATH` accessible directory; + +```bash +_wrapper="${HOME}/.local/bin/vimdoc"; + +tee "${_wrapper}" 1>/dev/null <