From 07fb55d34237a341d8a854e7151b4c5e854f7fc1 Mon Sep 17 00:00:00 2001 From: Weisi Dai Date: Sat, 11 Apr 2020 10:44:17 -0700 Subject: [PATCH] fish_indent: Add notes on SPACES_PER_INDENT. --- src/fish_indent.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/fish_indent.cpp b/src/fish_indent.cpp index 52c21b3fc..5967f1e44 100644 --- a/src/fish_indent.cpp +++ b/src/fish_indent.cpp @@ -47,6 +47,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA #include "tnode.h" #include "wutil.h" // IWYU pragma: keep +// The number of spaces per indent isn't supposed to be configurable. +// See discussion at https://github.com/fish-shell/fish-shell/pull/6790 #define SPACES_PER_INDENT 4 // An indent_t represents an abstract indent depth. 2 means we are in a doubly-nested block, etc.