dotfiles

personal dotfiles
git clone anongit@rnpnr.xyz:dotfiles.git
Log | Files | Refs | Feed | Submodules

Commit: af07e9e8f3bf26f56c9960f35c7acbf87ff95308
Parent: de10bef35263ba225a1b5c7a743a0155e84f0cb3
Author: Randy Palamar
Date:   Mon, 29 Dec 2025 19:35:44 -0700

vis: build.lua: update default error filter

it seems compilers have changed from ': error:' to 'fatal error:'

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

diff --git a/.config/vis/build.lua b/.config/vis/build.lua @@ -30,7 +30,7 @@ end local default_error_search = function(error_string) gf.setup_iterators_from_text(error_string, function(str) - return not str:find(": error:") and not str:find(": warning:") + return not str:find(" error:") and not str:find(": warning:") end) end