diff options
author | June McEnroe <june@causal.agency> | 2022-06-02 23:17:38 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-06-02 23:17:38 -0400 |
commit | 867f1c9743e0cecab44b07324ef3108bb0f2160a (patch) | |
tree | a9ba428a1c4ff15f2297654c706e48d689f11ff2 | |
parent | Do basic match highlighting (diff) | |
download | src-867f1c9743e0cecab44b07324ef3108bb0f2160a.tar.gz src-867f1c9743e0cecab44b07324ef3108bb0f2160a.zip |
Set TABSIZE=4
Absolutely indiscriminately.
-rw-r--r-- | bin/qf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/qf.c b/bin/qf.c index f2979d4f..0975cea8 100644 --- a/bin/qf.c +++ b/bin/qf.c @@ -103,6 +103,7 @@ static void curse(void) { cbreak(); noecho(); nodelay(stdscr, true); + TABSIZE = 4; curs_set(0); start_color(); use_default_colors(); |