vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 0aeb170c0770db38ced8abc3405b3c79dd2b9ace
parent aae3906fe9d3502b53f381076c348fa17f5463d2
Author: Michael Reed <m.reed@mykolab.com>
Date:   Sat,  9 Jan 2016 15:01:16 -0500

gitignore: Fix pattern

From `man gitignore':

o   A leading slash matches the beginning of the pathname. For example,
   "/*.c" matches "cat-file.c" but not "mozilla-sha1/sha1.c".

Diffstat:
M.gitignore | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -1,6 +1,6 @@ -config.h +/config.h *.swo *.swp *.o -./vis -dependency +/vis +/dependency