1

Update generated nvim config

This commit is contained in:
2024-06-05 22:05:42 +02:00
parent 859ee3a2ba
commit 075fe5f587
1292 changed files with 152601 additions and 0 deletions

View File

@ -0,0 +1,4 @@
This is a single test.
Line 2
Line 3
Line 4

View File

@ -0,0 +1,6 @@
This is a single test.
Line 2
Line 3
Line 4
Added Line
[]

View File

@ -0,0 +1,25 @@
#!/nix/store/306znyj77fv49kwnkpxmb0j2znqpa8bj-bash-5.2p26/bin/bash
#set -x
Test=`basename $PWD`
dir="$(realpath ../..)"
LC_ALL=C vim -u NONE -N \
--cmd ':set noswapfile hidden' \
-c "sil :so $dir/plugin/NrrwRgn.vim" \
-c ':e 1.txt' \
-c ':saveas! 1.txt.mod' \
-c 'sil :1,$NR!' \
-c 'sil :$put =\"Added Line\"' \
-c ':wq' \
-c ':$put =string(getmatches())' \
-c ':wq!'
rt=$(diff -uN0 <(cat *.mod) <(cat *.ok))
if [ "$?" -ne 0 ]; then
printf "$Test failed\n"
printf "Diff:\n%s\n" "$rt"
exit 2;
else
printf "$Test successful!\n"
fi

View File

@ -0,0 +1 @@
## Test 5: Make sure, highlighting is removed after closing narrowed window