aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2008-05-25 15:57:50 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2008-05-25 15:57:50 -0400
commit0e1787a267d9a9ecf38e7eb88e01f1b585821185 (patch)
tree2b2da3afc5b4a38918ed121421cee0ba35f9b7fb
parent8533c56db1246f43917e3c56ce1d38c235a25884 (diff)
downloadtextadept-0e1787a267d9a9ecf38e7eb88e01f1b585821185.tar.gz
textadept-0e1787a267d9a9ecf38e7eb88e01f1b585821185.zip
Added mime type for Ragel files; core/ext/mime_types.lua
-rw-r--r--core/ext/mime_types.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/ext/mime_types.lua b/core/ext/mime_types.lua
index 68032aef..454eec9e 100644
--- a/core/ext/mime_types.lua
+++ b/core/ext/mime_types.lua
@@ -17,6 +17,7 @@ local languages = {
makefile = 'makefile',
php = 'php',
python = 'python',
+ ragel = 'ragel',
rhtml = 'rhtml',
ruby = 'ruby',
xml = 'xml'
@@ -40,6 +41,7 @@ local extensions = {
py = l.python, pyw = l.python,
rhtml = l.rhtml,
rb = l.ruby, rbw = l.ruby,
+ rl = l.ragel,
xml = l.xml, xsl = l.xml, xslt = l.xml
}