vis

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

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

commit 31f65ee8ed05004dc5160a85d5cbd0ded2b910f3
parent d33b2d54c1a40ab3dfac45ab30f31bf8fc11eb95
Author: Andrey Proskurin <andreyproskurin@protonmail.com>
Date:   Wed, 31 Aug 2022 00:16:02 +0200

Fix luadoc to use ~= for status

Diffstat:
Mlua/vis.lua | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lua/vis.lua b/lua/vis.lua @@ -18,7 +18,7 @@ -- @usage -- vis:operator_new("gq", function(file, range, pos) -- local status, out, err = vis:pipe(file, range, "fmt") --- if not status then +-- if status ~= 0 then -- vis:info(err) -- else -- file:delete(range)