From 10dab3736e6fcaa4d4e073333287bf9b2f111868 Mon Sep 17 00:00:00 2001 From: Galen Guyer Date: Tue, 1 Nov 2022 17:04:39 -0400 Subject: [PATCH] fix(git): Git uses tabs in config files, we should warn on spaces but not tabs --- git.nanorc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git.nanorc b/git.nanorc index 0aaf4755..929cf79f 100644 --- a/git.nanorc +++ b/git.nanorc @@ -6,7 +6,7 @@ color brightmagenta "^[[:space:]]*\[.*\]$" color yellow ""(\\.|[^"])*"|'(\\.|[^'])*'" color brightblack "(^|[[:space:]])#([^{].*)?$" color ,green "[[:space:]]+$" -color ,red " +" +color ,red "^ +" # This code is free software; you can redistribute it and/or modify it under # the terms of the new BSD License.