Skip to content
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ venv/
ENV/
env.bak/
venv.bak/
uv.lock

# Spyder project settings
.spyderproject
Expand Down
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <<EOF
#!/usr/bin/env bash
uv run "${PWD}/.venv/bin/vimdoc" "\${@}"
EOF

chmod u+x "${_wrapper}";
```

Execution
---------

Expand Down