vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit b8b85a7208bf68b6ce558329daea31672b9733db parent e51d2aa5389e06e9d841a1fad3824cd4ffc7ca9d Author: Josh Wainwright <josh.wainwright@ldra.com> Date: Wed, 20 Apr 2016 15:22:22 +0100 Allow running individual tests from makefile Diffstat:
| M | lua/Makefile | | | 5 | +++++ |
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/lua/Makefile b/lua/Makefile @@ -1,3 +1,5 @@ +.PHONY=all clean test + all: clean test clean: @@ -5,3 +7,6 @@ clean: test: @./test.sh + +%: %.in + @./test.sh $@