diff options
Diffstat (limited to 'plugins/language_make.lua')
-rw-r--r-- | plugins/language_make.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/language_make.lua b/plugins/language_make.lua index 4ad3521..2d6b503 100644 --- a/plugins/language_make.lua +++ b/plugins/language_make.lua @@ -3,7 +3,7 @@ local syntax = require "core.syntax" syntax.add { name = "Makefile", - files = { "Makefile", "makefile", "%.mk$" }, + files = { PATHSEP .. "Makefile", PATHSEP .. "makefile", "%.mk$" }, comment = "#", patterns = { { pattern = "#.*\n", type = "comment" }, |