diff options
author | 2008-07-21 18:30:16 -0400 | |
---|---|---|
committer | 2008-07-21 18:30:16 -0400 | |
commit | dc834b3f99281c19c495a97d0da7818c57e186ea (patch) | |
tree | cf9a94a8854d953382b91cd10ef7881079774a40 /core/ext | |
parent | 1c4770844683de05617e2f8286502a7c58aba7e1 (diff) | |
download | textadept-dc834b3f99281c19c495a97d0da7818c57e186ea.tar.gz textadept-dc834b3f99281c19c495a97d0da7818c57e186ea.zip |
Added mime type for R files; core/ext/mime_types.lua
Diffstat (limited to 'core/ext')
-rw-r--r-- | core/ext/mime_types.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/ext/mime_types.lua b/core/ext/mime_types.lua index 63ef9fca..4f96b320 100644 --- a/core/ext/mime_types.lua +++ b/core/ext/mime_types.lua @@ -51,6 +51,7 @@ local languages = { postscript = 'postscript', props = 'props', python = 'python', + r = 'r', ragel = 'ragel', rebol = 'rebol', rhtml = 'rhtml', @@ -180,6 +181,9 @@ local extensions = { -- Python sc = l.python, py = l.python, pyw = l.python, + -- R + R = l.r, Rout = l.r, Rhistory = l.r, Rt = l.r, ['Rout.save'] = l.r, + ['Rout.fail'] = l.r, -- Rebol r = l.rebol, -- RHTML |