Start manual rewrite

This commit is contained in:
Radu Macocian (admac)
2026-03-17 10:13:24 +01:00
parent 70016196c1
commit 7f7b38e394
3 changed files with 57 additions and 760 deletions

10
run_tests.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# Run Neovim plugin tests
cd "$(dirname "$0")"
for test_file in tests/test_*.lua; do
echo "Running $test_file..."
nvim --headless --noplugin -u NONE -c "set rtp+=." -l "$test_file"
echo ""
done