diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2022-01-17 19:35:06 -0800 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-01-18 09:01:16 +0100 |
commit | d32736582e5d067a01badc417a9ad3544e4854f2 (patch) | |
tree | b02b12e267d0fd0cde3daf31991ce8d6076c646c /Userland/Libraries/LibSyntax | |
parent | 413d8ccd5f589550fdc1a2c7b0215f7fa610ae2c (diff) | |
download | serenity-d32736582e5d067a01badc417a9ad3544e4854f2.zip |
LibSyntax: Add a language enum entry for git commit messages
Diffstat (limited to 'Userland/Libraries/LibSyntax')
-rw-r--r-- | Userland/Libraries/LibSyntax/Highlighter.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Libraries/LibSyntax/Highlighter.h b/Userland/Libraries/LibSyntax/Highlighter.h index 04cd49096b..bed19b3fbd 100644 --- a/Userland/Libraries/LibSyntax/Highlighter.h +++ b/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, |