vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit addca182dcdfd54787fdb523f8cea19b0b6e8702 parent 6d4f92ca7e6dc3a99ed44db9c99d7c0b54664751 Author: Marc André Tanner <mat@brain-dump.org> Date: Fri, 16 Dec 2016 22:45:35 +0100 test/core: update .gitignore with coverage related files Diffstat:
| M | core/.gitignore | | | 3 | +++ |
| M | core/Makefile | | | 1 | + |
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/core/.gitignore b/core/.gitignore @@ -4,3 +4,6 @@ /map /array /ccan-config +*.gcda +*.gcno +*.gcov diff --git a/core/Makefile b/core/Makefile @@ -41,5 +41,6 @@ clean: @rm -f buffer @rm -f map @rm -f array + @rm -f *.gcov *.gcda *.gcno .PHONY: clean debug coverage