Changeset e86b29ecd29f326d653d16d766c50a840c927cc6
- Timestamp:
- 03/24/2008 10:15:57 AM
(10 months ago)
- Author:
- Robin Luckey <robin@Tangier.local>
- git-committer:
- Robin Luckey <robin@Tangier.local> 1206378957 -0700
- git-parent:
[11653d2154f46ac5076effeccc5e8a9db11cbdc8]
- git-author:
- root <root@linux-laptop.camicom> 1206029707 +0100
- Message:
Support for DCL command files
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r11653d2 |
re86b29e |
|
| 31 | 31 | csharp = CMonoglot.new("csharp", '//', [e('/*'), e('*/')], true, false) |
|---|
| 32 | 32 | css = CMonoglot.new("css", nil, [e('/*'), e('*/')], false, false) |
|---|
| | 33 | dcl = DclMonoglot.new("dcl") |
|---|
| 33 | 34 | dylan = CMonoglot.new("dylan", '//', nil, true, false) |
|---|
| 34 | 35 | erlang = CMonoglot.new("erlang", '%%', nil, true, true) |
|---|
| … | … | |
| 79 | 80 | csharp , |
|---|
| 80 | 81 | css , |
|---|
| | 82 | dcl, |
|---|
| 81 | 83 | dylan , |
|---|
| 82 | 84 | erlang , |
|---|
| r11653d2 |
re86b29e |
|
| 115 | 115 | '.c++' => "cpp", |
|---|
| 116 | 116 | '.cxx' => "cpp", |
|---|
| | 117 | '.com' => "dcl", |
|---|
| 117 | 118 | '.el' => "emacslisp", |
|---|
| 118 | 119 | # '.cbl' => "cobol", |
|---|
| r11653d2 |
re86b29e |
|
| 50 | 50 | 'csharp' => {:nice_name => 'C#' , :category => 0}, |
|---|
| 51 | 51 | 'css' => {:nice_name => 'CSS' , :category => 1}, |
|---|
| | 52 | 'dcl' => {:nice_name => 'DCL' , :category => 0}, |
|---|
| 52 | 53 | 'dylan' => {:nice_name => 'Dylan' , :category => 0}, |
|---|
| 53 | 54 | 'emacslisp' => {:nice_name => 'Emacs Lisp' , :category => 0}, |
|---|