9ec1adb3e7
CI / cargo fmt --check (push) Successful in 37s
CI / cargo clippy (push) Successful in 35s
CI / cargo test (push) Successful in 32s
CI / cargo fmt --check (pull_request) Successful in 29s
CI / cargo clippy (pull_request) Successful in 46s
CI / cargo test (pull_request) Successful in 52s
CI / editor keymaps (push) Successful in 1m36s
CI / editor keymaps (pull_request) Successful in 1m21s
Relocate start-nvim.sh, start-vim.sh and test-personal-wiki.sh from the repo root into scripts/, alongside the existing test harnesses. Each script now derives REPO_ROOT one level up, test-personal-wiki.sh execs the moved start-vim.sh, and the README + usage comments point at the new paths. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
35 lines
1.3 KiB
Bash
Executable File
35 lines
1.3 KiB
Bash
Executable File
#!/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:
|
|
# ./scripts/test-personal-wiki.sh # open index.wiki
|
|
# ./scripts/test-personal-wiki.sh path/to/note.wiki # open a specific file
|
|
# NUWIKI_PERSONAL_WIKI=/other/path ./scripts/test-personal-wiki.sh
|
|
# NUWIKI_DEV_SKIP_BUILD=1 ./scripts/test-personal-wiki.sh # reuse the cached binary
|
|
|
|
set -euo pipefail
|
|
|
|
REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
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
|
|
|
|
exec "$REPO_ROOT/scripts/start-vim.sh" "$@"
|