doc-view: C-j/C-k page navigation (same as pdf-tools)

This commit is contained in:
2026-09-10 12:30:45 -04:00
parent eeb77245c2
commit 9001c45e8b
4 changed files with 201 additions and 36 deletions

View File

@@ -17,6 +17,14 @@ if [ ${#TARGETS[@]} -eq 0 ]; then
exit 0
fi
# Root ExoKortex repo (root-level org files only; see ~/ExoKortex/.gitignore)
if git -C "$HOME/ExoKortex" rev-parse --is-inside-work-tree >/dev/null 2>&1; then
if [ -n "$(git -C "$HOME/ExoKortex" status --porcelain)" ]; then
git -C "$HOME/ExoKortex" add -A
git -C "$HOME/ExoKortex" commit -m "System: Automated background sweep $(date +'%Y-%m-%d %H:%M')"
fi
fi
# Execute strict structural scanning on active paths only
find "${TARGETS[@]}" -mindepth 2 -maxdepth 2 -type d -name ".git" | while read -r gitdir; do
repo_dir=$(dirname "$gitdir")