From 914378fcc6aceb692f797a32c926ce40ec862984 Mon Sep 17 00:00:00 2001 From: mintycube <90507714+mintycube@users.noreply.github.com> Date: Sat, 20 Jul 2024 13:26:57 +0500 Subject: [PATCH] Include patches.h for correct syntax highlighting --- config.h | 1 + 1 file changed, 1 insertion(+) diff --git a/config.h b/config.h index cd8ff78..59a6b59 100644 --- a/config.h +++ b/config.h @@ -1,5 +1,6 @@ /* See LICENSE file for copyright and license details. */ #include +#include "patches.h" /* Helper macros for spawning commands */ #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }