diff options
| author | Andrey Proskurin <andreyproskurin@protonmail.com> | 2022-08-31 00:16:02 +0200 |
|---|---|---|
| committer | Randy Palamar <palamar@ualberta.ca> | 2023-05-24 21:46:00 -0600 |
| commit | ef41f2db4f21774e2211bef3ec6f68d317d281ff (patch) | |
| tree | 12cb4e9221c7e1c0c5be5d2fbb0272d65d3a59b7 /lua/vis.lua | |
| parent | 86d6e2ac6a7cd6a6164a95100c56b10a964541f6 (diff) | |
| download | vis-ef41f2db4f21774e2211bef3ec6f68d317d281ff.tar.gz vis-ef41f2db4f21774e2211bef3ec6f68d317d281ff.tar.xz | |
Fix luadoc to use ~= for status
Diffstat (limited to 'lua/vis.lua')
| -rw-r--r-- | lua/vis.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/vis.lua b/lua/vis.lua index 44be66b..39649c1 100644 --- 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) |
