Merge branch 'ohmyzsh:master' into master

This commit is contained in:
Stephan Schielke 2026-03-24 04:32:12 +00:00 committed by GitHub
commit afd28c55b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
127 changed files with 2332 additions and 921 deletions

View file

@ -1,7 +1,7 @@
_togglePoetryShell() {
# Determine if currently in a Poetry-managed directory
local in_poetry_dir=0
if [[ -f "$PWD/pyproject.toml" ]] && grep -q 'tool.poetry' "$PWD/pyproject.toml"; then
if [[ -f "$PWD/pyproject.toml" && -f "$PWD/poetry.lock" ]]; then
in_poetry_dir=1
fi