0
0
mirror of https://github.com/vim/vim.git synced 2025-07-24 10:45:12 -04:00

Add TODO, FIXME to Haskell syntax file (#8055)

Adding TODO, XXX, FIXME to Haskell syntax file #8054
This commit is contained in:
Bruno-366 2023-08-18 00:04:54 +02:00 committed by GitHub
parent 442d1746f4
commit 817db406bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -108,6 +108,8 @@ syn match hsLineComment "---*\([^-!#$%&\*\+./<=>\?@\\^|~].*\)\?$" contain
syn region hsBlockComment start="{-" end="-}" contains=hsBlockComment,@Spell
syn region hsPragma start="{-#" end="#-}"
syn keyword hsTodo contained FIXME TODO XXX NOTE
" C Preprocessor directives. Shamelessly ripped from c.vim and trimmed
" First, see whether to flag directive-like lines or not
if (!exists("hs_allow_hash_operator"))