aboutsummaryrefslogtreecommitdiff
path: root/lua/plugins/filetype.lua
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2017-03-31 12:50:33 +0200
committerMarc André Tanner <mat@brain-dump.org>2017-03-31 12:58:21 +0200
commitdc5f5a45a2315011ebeeb0a56a7434ead292dc96 (patch)
tree42e155217801668ace0d7c0a2264a323ed42c801 /lua/plugins/filetype.lua
parent6f44057d09b865e9c7e443cd7d7adb8e541121db (diff)
downloadvis-dc5f5a45a2315011ebeeb0a56a7434ead292dc96.tar.gz
vis-dc5f5a45a2315011ebeeb0a56a7434ead292dc96.tar.xz
lexers: sync with scintillua changeset 600 rev fdeca0b808bf
I think the default value for the cache argument to the lexer load function should be true, not false. Optimize for the common case. This makes the API ugly/harder to use. But for now we follow upstream.
Diffstat (limited to 'lua/plugins/filetype.lua')
-rw-r--r--lua/plugins/filetype.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/plugins/filetype.lua b/lua/plugins/filetype.lua
index 4d522e6..5a6259a 100644
--- a/lua/plugins/filetype.lua
+++ b/lua/plugins/filetype.lua
@@ -214,6 +214,9 @@ vis.ftdetect.filetypes = {
litcoffee = {
ext = { "%.litcoffee$" },
},
+ logtalk = {
+ ext = { "%.lgt$" },
+ },
lua = {
ext = { "%.lua$" },
mime = { "text/x-lua" },