2026-05-26 22:47:13 -03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
#
|
|
|
|
|
# test-personal-wiki.sh — open the user's real personal wiki via start-vim.sh.
|
|
|
|
|
#
|
|
|
|
|
# Reuses start-vim.sh's plumbing (binary build, vim-lsp clone, viminfo
|
|
|
|
|
# under the dev cache) but points the wiki root at ~/.vimwiki/personal_wiki
|
|
|
|
|
# and disables seed_wiki so we don't drop a scratch `Notes.wiki` into your
|
|
|
|
|
# real notes.
|
|
|
|
|
#
|
|
|
|
|
# Useful when reproducing a user-reported bug against actual content rather
|
|
|
|
|
# than the seeded smoke-test wiki. State (viminfo/sessions) still lives
|
|
|
|
|
# under $XDG_CACHE_HOME/nuwiki-dev/ so your real Vim install stays untouched.
|
|
|
|
|
#
|
|
|
|
|
# Usage:
|
2026-05-30 14:35:24 -03:00
|
|
|
# ./development/test-personal-wiki.sh # open index.wiki
|
|
|
|
|
# ./development/test-personal-wiki.sh path/to/note.wiki # open a specific file
|
|
|
|
|
# NUWIKI_PERSONAL_WIKI=/other/path ./development/test-personal-wiki.sh
|
|
|
|
|
# NUWIKI_DEV_SKIP_BUILD=1 ./development/test-personal-wiki.sh # reuse the cached binary
|
2026-05-26 22:47:13 -03:00
|
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
2026-05-30 14:09:06 -03:00
|
|
|
REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
2026-05-26 22:47:13 -03:00
|
|
|
WIKI_DIR="${NUWIKI_PERSONAL_WIKI:-$HOME/.vimwiki/personal_wiki}"
|
|
|
|
|
|
|
|
|
|
if [[ ! -d "$WIKI_DIR" ]]; then
|
|
|
|
|
echo "test-personal-wiki: $WIKI_DIR does not exist" >&2
|
|
|
|
|
echo "set NUWIKI_PERSONAL_WIKI to point at your wiki, or create the default path" >&2
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
export NUWIKI_DEV_WIKI="$WIKI_DIR"
|
|
|
|
|
export NUWIKI_DEV_NO_SEED=1
|
|
|
|
|
|
2026-05-30 14:35:24 -03:00
|
|
|
exec "$REPO_ROOT/development/start-vim.sh" "$@"
|