fork of github.com/rxi/lite that removes windows support and improves useability
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
lite/data/plugins/language_comment.lua

14 lines
277 B

local syntax = require "core.syntax"
syntax.add {
files = { "%.%$" },
patterns = {},
symbols = {
["TODO"] = "keyword",
["FIXME"] = "keyword",
["FIX"] = "keyword",
["BUG"] = "keyword",
["IMPROVEMENT"] = "keyword",
},
}