Browse Source

LibSyntax: Add a language enum entry for git commit messages

Brian Gianforcaro 3 years ago
parent
commit
d32736582e
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Userland/Libraries/LibSyntax/Highlighter.h

+ 2 - 1
Userland/Libraries/LibSyntax/Highlighter.h

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2020-2021, the SerenityOS developers.
+ * Copyright (c) 2020-2022, the SerenityOS developers.
  *
  * SPDX-License-Identifier: BSD-2-Clause
  */
@@ -17,6 +17,7 @@ namespace Syntax {
 enum class Language {
     Cpp,
     CSS,
+    GitCommit,
     GML,
     HTML,
     INI,