github-linguist 2.10.15 → 2.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/linguist/language.rb +18 -34
- data/lib/linguist/languages.yml +461 -292
- data/lib/linguist/samples.json +3185 -82
- data/lib/linguist/vendor.yml +7 -0
- data/lib/linguist/version.rb +1 -1
- metadata +8 -8
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 5f3d2afbe328769fe6d43290ac15e279a1fc839e
         | 
| 4 | 
            +
              data.tar.gz: 6150cd186aa13e933e26c01ea48c3b2416ecf965
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: c0e276415c90ee3dcd43d6eed9f7357e4cd49838429c82200754a3fb7657ba298de3ba553c11ae481a8aa25735140f6181c1c3c78bc91e94d1d48e1aaf4b1db9
         | 
| 7 | 
            +
              data.tar.gz: 4af5b1dd14a9b5dc42d49accac0241193f92491d1c99b17b2e918689c0e2d6aa3324cfaeebee80b4e1dc22aef51a9cd03b549449698aa1f34822c968c0a152c2
         | 
    
        data/lib/linguist/language.rb
    CHANGED
    
    | @@ -24,7 +24,6 @@ module Linguist | |
| 24 24 | 
             
                @extension_index          = Hash.new { |h,k| h[k] = [] }
         | 
| 25 25 | 
             
                @interpreter_index        = Hash.new { |h,k| h[k] = [] }
         | 
| 26 26 | 
             
                @filename_index           = Hash.new { |h,k| h[k] = [] }
         | 
| 27 | 
            -
                @primary_extension_index  = {}
         | 
| 28 27 |  | 
| 29 28 | 
             
                # Valid Languages types
         | 
| 30 29 | 
             
                TYPES = [:data, :markup, :programming, :prose]
         | 
| @@ -80,12 +79,6 @@ module Linguist | |
| 80 79 | 
             
                    @extension_index[extension] << language
         | 
| 81 80 | 
             
                  end
         | 
| 82 81 |  | 
| 83 | 
            -
                  if @primary_extension_index.key?(language.primary_extension)
         | 
| 84 | 
            -
                    raise ArgumentError, "Duplicate primary extension: #{language.primary_extension}"
         | 
| 85 | 
            -
                  end
         | 
| 86 | 
            -
             | 
| 87 | 
            -
                  @primary_extension_index[language.primary_extension] = language
         | 
| 88 | 
            -
             | 
| 89 82 | 
             
                  language.interpreters.each do |interpreter|
         | 
| 90 83 | 
             
                    @interpreter_index[interpreter] << language
         | 
| 91 84 | 
             
                  end
         | 
| @@ -191,8 +184,7 @@ module Linguist | |
| 191 184 | 
             
                # Returns all matching Languages or [] if none were found.
         | 
| 192 185 | 
             
                def self.find_by_filename(filename)
         | 
| 193 186 | 
             
                  basename, extname = File.basename(filename), File.extname(filename)
         | 
| 194 | 
            -
                  langs =  | 
| 195 | 
            -
                          @filename_index[basename] +
         | 
| 187 | 
            +
                  langs = @filename_index[basename] +
         | 
| 196 188 | 
             
                          @extension_index[extname]
         | 
| 197 189 | 
             
                  langs.compact.uniq
         | 
| 198 190 | 
             
                end
         | 
| @@ -299,15 +291,6 @@ module Linguist | |
| 299 291 | 
             
                  @interpreters = attributes[:interpreters]   || []
         | 
| 300 292 | 
             
                  @filenames  = attributes[:filenames]  || []
         | 
| 301 293 |  | 
| 302 | 
            -
                  unless @primary_extension = attributes[:primary_extension]
         | 
| 303 | 
            -
                    raise ArgumentError, "#{@name} is missing primary extension"
         | 
| 304 | 
            -
                  end
         | 
| 305 | 
            -
             | 
| 306 | 
            -
                  # Prepend primary extension unless its already included
         | 
| 307 | 
            -
                  if primary_extension && !extensions.include?(primary_extension)
         | 
| 308 | 
            -
                    @extensions = [primary_extension] + extensions
         | 
| 309 | 
            -
                  end
         | 
| 310 | 
            -
             | 
| 311 294 | 
             
                  # Set popular, and searchable flags
         | 
| 312 295 | 
             
                  @popular    = attributes.key?(:popular)    ? attributes[:popular]    : false
         | 
| 313 296 | 
             
                  @searchable = attributes.key?(:searchable) ? attributes[:searchable] : true
         | 
| @@ -395,20 +378,6 @@ module Linguist | |
| 395 378 | 
             
                # Returns the extensions Array
         | 
| 396 379 | 
             
                attr_reader :extensions
         | 
| 397 380 |  | 
| 398 | 
            -
                # Deprecated: Get primary extension
         | 
| 399 | 
            -
                #
         | 
| 400 | 
            -
                # Defaults to the first extension but can be overridden
         | 
| 401 | 
            -
                # in the languages.yml.
         | 
| 402 | 
            -
                #
         | 
| 403 | 
            -
                # The primary extension can not be nil. Tests should verify this.
         | 
| 404 | 
            -
                #
         | 
| 405 | 
            -
                # This attribute is only used by app/helpers/gists_helper.rb for
         | 
| 406 | 
            -
                # creating the language dropdown. It really should be using `name`
         | 
| 407 | 
            -
                # instead. Would like to drop primary extension.
         | 
| 408 | 
            -
                #
         | 
| 409 | 
            -
                # Returns the extension String.
         | 
| 410 | 
            -
                attr_reader :primary_extension
         | 
| 411 | 
            -
             | 
| 412 381 | 
             
                # Public: Get interpreters
         | 
| 413 382 | 
             
                #
         | 
| 414 383 | 
             
                # Examples
         | 
| @@ -432,6 +401,22 @@ module Linguist | |
| 432 401 | 
             
                  (extensions + [primary_extension]).uniq
         | 
| 433 402 | 
             
                end
         | 
| 434 403 |  | 
| 404 | 
            +
                # Deprecated: Get primary extension
         | 
| 405 | 
            +
                #
         | 
| 406 | 
            +
                # Defaults to the first extension but can be overridden
         | 
| 407 | 
            +
                # in the languages.yml.
         | 
| 408 | 
            +
                #
         | 
| 409 | 
            +
                # The primary extension can not be nil. Tests should verify this.
         | 
| 410 | 
            +
                #
         | 
| 411 | 
            +
                # This method is only used by app/helpers/gists_helper.rb for creating
         | 
| 412 | 
            +
                # the language dropdown. It really should be using `name` instead.
         | 
| 413 | 
            +
                # Would like to drop primary extension.
         | 
| 414 | 
            +
                #
         | 
| 415 | 
            +
                # Returns the extension String.
         | 
| 416 | 
            +
                def primary_extension
         | 
| 417 | 
            +
                  extensions.first
         | 
| 418 | 
            +
                end
         | 
| 419 | 
            +
             | 
| 435 420 | 
             
                # Public: Get URL escaped name.
         | 
| 436 421 | 
             
                #
         | 
| 437 422 | 
             
                # Examples
         | 
| @@ -573,9 +558,8 @@ module Linguist | |
| 573 558 | 
             
                  :group_name        => options['group'],
         | 
| 574 559 | 
             
                  :searchable        => options.key?('searchable') ? options['searchable'] : true,
         | 
| 575 560 | 
             
                  :search_term       => options['search_term'],
         | 
| 576 | 
            -
                  :extensions        => options['extensions'].sort,
         | 
| 561 | 
            +
                  :extensions        => [options['extensions'].first] + options['extensions'][1..-1].sort,
         | 
| 577 562 | 
             
                  :interpreters      => options['interpreters'].sort,
         | 
| 578 | 
            -
                  :primary_extension => options['primary_extension'],
         | 
| 579 563 | 
             
                  :filenames         => options['filenames'],
         | 
| 580 564 | 
             
                  :popular           => popular.include?(name)
         | 
| 581 565 | 
             
                )
         | 
    
        data/lib/linguist/languages.yml
    CHANGED
    
    | @@ -9,12 +9,9 @@ | |
| 9 9 | 
             
            #                     includes name.downcase)
         | 
| 10 10 | 
             
            # ace_mode          - A String name of Ace Mode (if available)
         | 
| 11 11 | 
             
            # wrap              - Boolean wrap to enable line wrapping (default: false)
         | 
| 12 | 
            -
            #  | 
| 12 | 
            +
            # extensions        - An Array of associated extensions (the first one is
         | 
| 13 | 
            +
            #                     considered the primary extension)
         | 
| 13 14 | 
             
            # interpreters      - An Array of associated interpreters
         | 
| 14 | 
            -
            # primary_extension - A String for the main extension associated with
         | 
| 15 | 
            -
            #                     the language. Must be unique. Used when a Language is picked
         | 
| 16 | 
            -
            #                     from a dropdown and we need to automatically choose an
         | 
| 17 | 
            -
            #                     extension.
         | 
| 18 15 | 
             
            # searchable        - Boolean flag to enable searching (defaults to true)
         | 
| 19 16 | 
             
            # search_term       - Deprecated: Some languages maybe indexed under a
         | 
| 20 17 | 
             
            #                     different alias. Avoid defining new exceptions.
         | 
| @@ -28,13 +25,15 @@ | |
| 28 25 | 
             
            ABAP:
         | 
| 29 26 | 
             
              type: programming
         | 
| 30 27 | 
             
              lexer: ABAP
         | 
| 31 | 
            -
               | 
| 28 | 
            +
              extensions:
         | 
| 29 | 
            +
              - .abap
         | 
| 32 30 |  | 
| 33 31 | 
             
            ANTLR:
         | 
| 34 32 | 
             
              type: programming
         | 
| 35 33 | 
             
              color: "#9DC3FF"
         | 
| 36 34 | 
             
              lexer: ANTLR
         | 
| 37 | 
            -
               | 
| 35 | 
            +
              extensions:
         | 
| 36 | 
            +
              - .g4
         | 
| 38 37 |  | 
| 39 38 | 
             
            ASP:
         | 
| 40 39 | 
             
              type: programming
         | 
| @@ -44,8 +43,8 @@ ASP: | |
| 44 43 | 
             
              aliases:
         | 
| 45 44 | 
             
              - aspx
         | 
| 46 45 | 
             
              - aspx-vb
         | 
| 47 | 
            -
              primary_extension: .asp
         | 
| 48 46 | 
             
              extensions:
         | 
| 47 | 
            +
              - .asp
         | 
| 49 48 | 
             
              - .asax
         | 
| 50 49 | 
             
              - .ascx
         | 
| 51 50 | 
             
              - .ashx
         | 
| @@ -56,11 +55,11 @@ ASP: | |
| 56 55 | 
             
            ATS:
         | 
| 57 56 | 
             
              type: programming
         | 
| 58 57 | 
             
              color: "#1ac620"
         | 
| 59 | 
            -
              primary_extension: .dats
         | 
| 60 58 | 
             
              lexer: OCaml
         | 
| 61 59 | 
             
              aliases:
         | 
| 62 60 | 
             
              - ats2
         | 
| 63 61 | 
             
              extensions:
         | 
| 62 | 
            +
              - .dats
         | 
| 64 63 | 
             
              - .atxt
         | 
| 65 64 | 
             
              - .hats
         | 
| 66 65 | 
             
              - .sats
         | 
| @@ -72,43 +71,48 @@ ActionScript: | |
| 72 71 | 
             
              search_term: as3
         | 
| 73 72 | 
             
              aliases:
         | 
| 74 73 | 
             
              - as3
         | 
| 75 | 
            -
               | 
| 74 | 
            +
              extensions:
         | 
| 75 | 
            +
              - .as
         | 
| 76 76 |  | 
| 77 77 | 
             
            Ada:
         | 
| 78 78 | 
             
              type: programming
         | 
| 79 79 | 
             
              color: "#02f88c"
         | 
| 80 | 
            -
              primary_extension: .adb
         | 
| 81 80 | 
             
              extensions:
         | 
| 81 | 
            +
              - .adb
         | 
| 82 82 | 
             
              - .ads
         | 
| 83 83 |  | 
| 84 84 | 
             
            Agda:
         | 
| 85 85 | 
             
              type: programming
         | 
| 86 86 | 
             
              color: "#467C91"
         | 
| 87 | 
            -
               | 
| 87 | 
            +
              extensions:
         | 
| 88 | 
            +
              - .agda
         | 
| 88 89 |  | 
| 89 90 | 
             
            Alloy:
         | 
| 90 91 | 
             
              type: programming  # 'modeling' would be more appropiate
         | 
| 91 92 | 
             
              lexer: Text only
         | 
| 92 93 | 
             
              color: "#cc5c24"
         | 
| 93 | 
            -
               | 
| 94 | 
            +
              extensions:
         | 
| 95 | 
            +
              - .als
         | 
| 94 96 |  | 
| 95 97 | 
             
            ApacheConf:
         | 
| 96 98 | 
             
              type: markup
         | 
| 97 99 | 
             
              aliases:
         | 
| 98 100 | 
             
              - apache
         | 
| 99 | 
            -
               | 
| 101 | 
            +
              extensions:
         | 
| 102 | 
            +
              - .apacheconf
         | 
| 100 103 |  | 
| 101 104 | 
             
            Apex:
         | 
| 102 105 | 
             
              type: programming
         | 
| 103 106 | 
             
              lexer: Text only
         | 
| 104 | 
            -
               | 
| 107 | 
            +
              extensions:
         | 
| 108 | 
            +
              - .cls
         | 
| 105 109 |  | 
| 106 110 | 
             
            AppleScript:
         | 
| 107 111 | 
             
              type: programming
         | 
| 108 112 | 
             
              aliases:
         | 
| 109 113 | 
             
              - osascript
         | 
| 110 | 
            -
              primary_extension: .applescript
         | 
| 111 114 | 
             
              extensions:
         | 
| 115 | 
            +
              - .applescript
         | 
| 112 116 | 
             
              - .scpt
         | 
| 113 117 | 
             
              interpreters:
         | 
| 114 118 | 
             
              - osascript
         | 
| @@ -117,21 +121,23 @@ Arc: | |
| 117 121 | 
             
              type: programming
         | 
| 118 122 | 
             
              color: "#ca2afe"
         | 
| 119 123 | 
             
              lexer: Text only
         | 
| 120 | 
            -
               | 
| 124 | 
            +
              extensions:
         | 
| 125 | 
            +
              - .arc
         | 
| 121 126 |  | 
| 122 127 | 
             
            Arduino:
         | 
| 123 128 | 
             
              type: programming
         | 
| 124 129 | 
             
              color: "#bd79d1"
         | 
| 125 130 | 
             
              lexer: C++
         | 
| 126 | 
            -
               | 
| 131 | 
            +
              extensions:
         | 
| 132 | 
            +
              - .ino
         | 
| 127 133 |  | 
| 128 134 | 
             
            AsciiDoc:
         | 
| 129 135 | 
             
              type: prose
         | 
| 130 136 | 
             
              lexer: Text only
         | 
| 131 137 | 
             
              ace_mode: asciidoc
         | 
| 132 138 | 
             
              wrap: true
         | 
| 133 | 
            -
              primary_extension: .asciidoc
         | 
| 134 139 | 
             
              extensions:
         | 
| 140 | 
            +
              - .asciidoc
         | 
| 135 141 | 
             
              - .adoc
         | 
| 136 142 | 
             
              - .asc
         | 
| 137 143 |  | 
| @@ -139,7 +145,8 @@ AspectJ: | |
| 139 145 | 
             
              type: programming
         | 
| 140 146 | 
             
              lexer: AspectJ
         | 
| 141 147 | 
             
              color: "#1957b0"
         | 
| 142 | 
            -
               | 
| 148 | 
            +
              extensions:
         | 
| 149 | 
            +
              - .aj
         | 
| 143 150 |  | 
| 144 151 | 
             
            Assembly:
         | 
| 145 152 | 
             
              type: programming
         | 
| @@ -148,11 +155,13 @@ Assembly: | |
| 148 155 | 
             
              search_term: nasm
         | 
| 149 156 | 
             
              aliases:
         | 
| 150 157 | 
             
              - nasm
         | 
| 151 | 
            -
               | 
| 158 | 
            +
              extensions:
         | 
| 159 | 
            +
              - .asm
         | 
| 152 160 |  | 
| 153 161 | 
             
            Augeas:
         | 
| 154 162 | 
             
              type: programming
         | 
| 155 | 
            -
               | 
| 163 | 
            +
              extensions:
         | 
| 164 | 
            +
              - .aug
         | 
| 156 165 |  | 
| 157 166 | 
             
            AutoHotkey:
         | 
| 158 167 | 
             
              type: programming
         | 
| @@ -160,7 +169,8 @@ AutoHotkey: | |
| 160 169 | 
             
              color: "#6594b9"
         | 
| 161 170 | 
             
              aliases:
         | 
| 162 171 | 
             
              - ahk
         | 
| 163 | 
            -
               | 
| 172 | 
            +
              extensions:
         | 
| 173 | 
            +
              - .ahk
         | 
| 164 174 |  | 
| 165 175 | 
             
            AutoIt:
         | 
| 166 176 | 
             
              type: programming
         | 
| @@ -169,13 +179,14 @@ AutoIt: | |
| 169 179 | 
             
              - au3
         | 
| 170 180 | 
             
              - AutoIt3
         | 
| 171 181 | 
             
              - AutoItScript
         | 
| 172 | 
            -
               | 
| 182 | 
            +
              extensions:
         | 
| 183 | 
            +
              - .au3
         | 
| 173 184 |  | 
| 174 185 | 
             
            Awk:
         | 
| 175 186 | 
             
              type: programming
         | 
| 176 187 | 
             
              lexer: Awk
         | 
| 177 | 
            -
              primary_extension: .awk
         | 
| 178 188 | 
             
              extensions:
         | 
| 189 | 
            +
              - .awk
         | 
| 179 190 | 
             
              - .auk
         | 
| 180 191 | 
             
              - .gawk
         | 
| 181 192 | 
             
              - .mawk
         | 
| @@ -192,54 +203,60 @@ Batchfile: | |
| 192 203 | 
             
              search_term: bat
         | 
| 193 204 | 
             
              aliases:
         | 
| 194 205 | 
             
              - bat
         | 
| 195 | 
            -
              primary_extension: .bat
         | 
| 196 206 | 
             
              extensions:
         | 
| 207 | 
            +
              - .bat
         | 
| 197 208 | 
             
              - .cmd
         | 
| 198 209 |  | 
| 199 210 | 
             
            Befunge:
         | 
| 200 | 
            -
               | 
| 211 | 
            +
              extensions:
         | 
| 212 | 
            +
              - .befunge
         | 
| 201 213 |  | 
| 202 214 | 
             
            BlitzBasic:
         | 
| 203 215 | 
             
              type: programming
         | 
| 204 216 | 
             
              aliases:
         | 
| 205 217 | 
             
              - blitzplus
         | 
| 206 218 | 
             
              - blitz3d
         | 
| 207 | 
            -
              primary_extension: .bb
         | 
| 208 219 | 
             
              extensions:
         | 
| 220 | 
            +
              - .bb
         | 
| 209 221 | 
             
              - .decls
         | 
| 210 222 |  | 
| 211 223 | 
             
            BlitzMax:
         | 
| 212 | 
            -
               | 
| 224 | 
            +
              extensions:
         | 
| 225 | 
            +
              - .bmx
         | 
| 213 226 |  | 
| 214 227 | 
             
            Bluespec:
         | 
| 215 228 | 
             
              type: programming
         | 
| 216 229 | 
             
              lexer: verilog
         | 
| 217 | 
            -
               | 
| 230 | 
            +
              extensions:
         | 
| 231 | 
            +
              - .bsv
         | 
| 218 232 |  | 
| 219 233 | 
             
            Boo:
         | 
| 220 234 | 
             
              type: programming
         | 
| 221 235 | 
             
              color: "#d4bec1"
         | 
| 222 | 
            -
               | 
| 236 | 
            +
              extensions:
         | 
| 237 | 
            +
              - .boo
         | 
| 223 238 |  | 
| 224 239 | 
             
            Brainfuck:
         | 
| 225 | 
            -
              primary_extension: .b
         | 
| 226 240 | 
             
              extensions:
         | 
| 241 | 
            +
              - .b
         | 
| 227 242 | 
             
              - .bf
         | 
| 228 243 |  | 
| 229 244 | 
             
            Brightscript:
         | 
| 230 245 | 
             
              type: programming
         | 
| 231 246 | 
             
              lexer: Text only
         | 
| 232 | 
            -
               | 
| 247 | 
            +
              extensions:
         | 
| 248 | 
            +
              - .brs
         | 
| 233 249 |  | 
| 234 250 | 
             
            Bro:
         | 
| 235 251 | 
             
              type: programming
         | 
| 236 | 
            -
               | 
| 252 | 
            +
              extensions:
         | 
| 253 | 
            +
              - .bro
         | 
| 237 254 |  | 
| 238 255 | 
             
            C:
         | 
| 239 256 | 
             
              type: programming
         | 
| 240 257 | 
             
              color: "#555"
         | 
| 241 | 
            -
              primary_extension: .c
         | 
| 242 258 | 
             
              extensions:
         | 
| 259 | 
            +
              - .c
         | 
| 243 260 | 
             
              - .cats
         | 
| 244 261 | 
             
              - .w
         | 
| 245 262 |  | 
| @@ -250,8 +267,8 @@ C#: | |
| 250 267 | 
             
              color: "#5a25a2"
         | 
| 251 268 | 
             
              aliases:
         | 
| 252 269 | 
             
              - csharp
         | 
| 253 | 
            -
              primary_extension: .cs
         | 
| 254 270 | 
             
              extensions:
         | 
| 271 | 
            +
              - .cs
         | 
| 255 272 | 
             
              - .cshtml
         | 
| 256 273 | 
             
              - .csx
         | 
| 257 274 |  | 
| @@ -262,8 +279,8 @@ C++: | |
| 262 279 | 
             
              color: "#f34b7d"
         | 
| 263 280 | 
             
              aliases:
         | 
| 264 281 | 
             
              - cpp
         | 
| 265 | 
            -
              primary_extension: .cpp
         | 
| 266 282 | 
             
              extensions:
         | 
| 283 | 
            +
              - .cpp
         | 
| 267 284 | 
             
              - .C
         | 
| 268 285 | 
             
              - .c++
         | 
| 269 286 | 
             
              - .cc
         | 
| @@ -280,7 +297,8 @@ C++: | |
| 280 297 | 
             
            C-ObjDump:
         | 
| 281 298 | 
             
              type: data
         | 
| 282 299 | 
             
              lexer: c-objdump
         | 
| 283 | 
            -
               | 
| 300 | 
            +
              extensions:
         | 
| 301 | 
            +
              - .c-objdump
         | 
| 284 302 |  | 
| 285 303 | 
             
            C2hs Haskell:
         | 
| 286 304 | 
             
              type: programming
         | 
| @@ -288,24 +306,26 @@ C2hs Haskell: | |
| 288 306 | 
             
              group: Haskell
         | 
| 289 307 | 
             
              aliases:
         | 
| 290 308 | 
             
              - c2hs
         | 
| 291 | 
            -
               | 
| 309 | 
            +
              extensions:
         | 
| 310 | 
            +
              - .chs
         | 
| 292 311 |  | 
| 293 312 | 
             
            CLIPS:
         | 
| 294 313 | 
             
              type: programming
         | 
| 295 314 | 
             
              lexer: Text only
         | 
| 296 | 
            -
               | 
| 315 | 
            +
              extensions:
         | 
| 316 | 
            +
              - .clp
         | 
| 297 317 |  | 
| 298 318 | 
             
            CMake:
         | 
| 299 | 
            -
              primary_extension: .cmake
         | 
| 300 319 | 
             
              extensions:
         | 
| 320 | 
            +
              - .cmake
         | 
| 301 321 | 
             
              - .cmake.in
         | 
| 302 322 | 
             
              filenames:
         | 
| 303 323 | 
             
              - CMakeLists.txt
         | 
| 304 324 |  | 
| 305 325 | 
             
            COBOL:
         | 
| 306 326 | 
             
              type: programming
         | 
| 307 | 
            -
              primary_extension: .cob
         | 
| 308 327 | 
             
              extensions:
         | 
| 328 | 
            +
              - .cob
         | 
| 309 329 | 
             
              - .cbl
         | 
| 310 330 | 
             
              - .ccp
         | 
| 311 331 | 
             
              - .cobol
         | 
| @@ -314,39 +334,43 @@ COBOL: | |
| 314 334 | 
             
            CSS:
         | 
| 315 335 | 
             
              ace_mode: css
         | 
| 316 336 | 
             
              color: "#563d7c"
         | 
| 317 | 
            -
               | 
| 337 | 
            +
              extensions:
         | 
| 338 | 
            +
              - .css
         | 
| 318 339 |  | 
| 319 340 | 
             
            Ceylon:
         | 
| 320 341 | 
             
              type: programming
         | 
| 321 342 | 
             
              lexer: Ceylon
         | 
| 322 | 
            -
               | 
| 343 | 
            +
              extensions:
         | 
| 344 | 
            +
              - .ceylon
         | 
| 323 345 |  | 
| 324 346 | 
             
            ChucK:
         | 
| 325 347 | 
             
              lexer: Java
         | 
| 326 | 
            -
               | 
| 348 | 
            +
              extensions:
         | 
| 349 | 
            +
              - .ck
         | 
| 327 350 |  | 
| 328 351 | 
             
            Cirru:
         | 
| 329 352 | 
             
              type: programming
         | 
| 330 353 | 
             
              color: "#aaaaff"
         | 
| 331 | 
            -
              primary_extension: .cirru
         | 
| 332 354 | 
             
              # ace_mode: cirru
         | 
| 333 355 | 
             
              # lexer: Cirru
         | 
| 334 356 | 
             
              lexer: Text only
         | 
| 357 | 
            +
              extensions:
         | 
| 358 | 
            +
              - .cirru
         | 
| 335 359 |  | 
| 336 360 | 
             
            Clean:
         | 
| 337 361 | 
             
              type: programming
         | 
| 338 362 | 
             
              color: "#3a81ad"
         | 
| 339 363 | 
             
              lexer: Text only
         | 
| 340 | 
            -
              primary_extension: .icl
         | 
| 341 364 | 
             
              extensions:
         | 
| 365 | 
            +
              - .icl
         | 
| 342 366 | 
             
              - .dcl
         | 
| 343 367 |  | 
| 344 368 | 
             
            Clojure:
         | 
| 345 369 | 
             
              type: programming
         | 
| 346 370 | 
             
              ace_mode: clojure
         | 
| 347 371 | 
             
              color: "#db5855"
         | 
| 348 | 
            -
              primary_extension: .clj
         | 
| 349 372 | 
             
              extensions:
         | 
| 373 | 
            +
              - .clj
         | 
| 350 374 | 
             
              - .cl2
         | 
| 351 375 | 
             
              - .cljc
         | 
| 352 376 | 
             
              - .cljs
         | 
| @@ -364,8 +388,8 @@ CoffeeScript: | |
| 364 388 | 
             
              aliases:
         | 
| 365 389 | 
             
              - coffee
         | 
| 366 390 | 
             
              - coffee-script
         | 
| 367 | 
            -
              primary_extension: .coffee
         | 
| 368 391 | 
             
              extensions:
         | 
| 392 | 
            +
              - .coffee
         | 
| 369 393 | 
             
              - ._coffee
         | 
| 370 394 | 
             
              - .cson
         | 
| 371 395 | 
             
              - .iced
         | 
| @@ -382,8 +406,8 @@ ColdFusion: | |
| 382 406 | 
             
              search_term: cfm
         | 
| 383 407 | 
             
              aliases:
         | 
| 384 408 | 
             
              - cfm
         | 
| 385 | 
            -
              primary_extension: .cfm
         | 
| 386 409 | 
             
              extensions:
         | 
| 410 | 
            +
              - .cfm
         | 
| 387 411 | 
             
              - .cfc
         | 
| 388 412 |  | 
| 389 413 | 
             
            Common Lisp:
         | 
| @@ -391,8 +415,8 @@ Common Lisp: | |
| 391 415 | 
             
              color: "#3fb68b"
         | 
| 392 416 | 
             
              aliases:
         | 
| 393 417 | 
             
              - lisp
         | 
| 394 | 
            -
              primary_extension: .lisp
         | 
| 395 418 | 
             
              extensions:
         | 
| 419 | 
            +
              - .lisp
         | 
| 396 420 | 
             
              - .asd
         | 
| 397 421 | 
             
              - .cl
         | 
| 398 422 | 
             
              - .lsp
         | 
| @@ -407,13 +431,14 @@ Common Lisp: | |
| 407 431 |  | 
| 408 432 | 
             
            Coq:
         | 
| 409 433 | 
             
              type: programming
         | 
| 410 | 
            -
               | 
| 434 | 
            +
              extensions:
         | 
| 435 | 
            +
              - .coq
         | 
| 411 436 |  | 
| 412 437 | 
             
            Cpp-ObjDump:
         | 
| 413 438 | 
             
              type: data
         | 
| 414 439 | 
             
              lexer: cpp-objdump
         | 
| 415 | 
            -
              primary_extension: .cppobjdump
         | 
| 416 440 | 
             
              extensions:
         | 
| 441 | 
            +
              - .cppobjdump
         | 
| 417 442 | 
             
              - .c++objdump
         | 
| 418 443 | 
             
              - .cxx-objdump
         | 
| 419 444 |  | 
| @@ -421,95 +446,104 @@ Creole: | |
| 421 446 | 
             
              type: prose
         | 
| 422 447 | 
             
              lexer: Text only
         | 
| 423 448 | 
             
              wrap: true
         | 
| 424 | 
            -
               | 
| 449 | 
            +
              extensions:
         | 
| 450 | 
            +
              - .creole
         | 
| 425 451 |  | 
| 426 452 | 
             
            Crystal:
         | 
| 427 453 | 
             
              type: programming
         | 
| 428 454 | 
             
              lexer: Ruby
         | 
| 429 | 
            -
               | 
| 455 | 
            +
              extensions:
         | 
| 456 | 
            +
              - .cr
         | 
| 430 457 | 
             
              ace_mode: ruby
         | 
| 431 458 |  | 
| 432 459 | 
             
            Cucumber:
         | 
| 433 460 | 
             
              lexer: Gherkin
         | 
| 434 | 
            -
               | 
| 461 | 
            +
              extensions:
         | 
| 462 | 
            +
              - .feature
         | 
| 435 463 |  | 
| 436 464 | 
             
            Cuda:
         | 
| 465 | 
            +
              type: programming
         | 
| 437 466 | 
             
              lexer: CUDA
         | 
| 438 | 
            -
              primary_extension: .cu
         | 
| 439 467 | 
             
              extensions:
         | 
| 468 | 
            +
              - .cu
         | 
| 440 469 | 
             
              - .cuh
         | 
| 441 470 |  | 
| 442 471 | 
             
            Cython:
         | 
| 443 472 | 
             
              type: programming
         | 
| 444 473 | 
             
              group: Python
         | 
| 445 | 
            -
              primary_extension: .pyx
         | 
| 446 474 | 
             
              extensions:
         | 
| 475 | 
            +
              - .pyx
         | 
| 447 476 | 
             
              - .pxd
         | 
| 448 477 | 
             
              - .pxi
         | 
| 449 478 |  | 
| 450 479 | 
             
            D:
         | 
| 451 480 | 
             
              type: programming
         | 
| 452 481 | 
             
              color: "#fcd46d"
         | 
| 453 | 
            -
              primary_extension: .d
         | 
| 454 482 | 
             
              extensions:
         | 
| 483 | 
            +
              - .d
         | 
| 455 484 | 
             
              - .di
         | 
| 456 485 |  | 
| 457 486 | 
             
            D-ObjDump:
         | 
| 458 487 | 
             
              type: data
         | 
| 459 488 | 
             
              lexer: d-objdump
         | 
| 460 | 
            -
               | 
| 489 | 
            +
              extensions:
         | 
| 490 | 
            +
              - .d-objdump
         | 
| 461 491 |  | 
| 462 492 | 
             
            DM:
         | 
| 463 493 | 
             
              type: programming
         | 
| 464 494 | 
             
              color: "#075ff1"
         | 
| 465 495 | 
             
              lexer: C++
         | 
| 466 | 
            -
               | 
| 496 | 
            +
              extensions:
         | 
| 497 | 
            +
              - .dm
         | 
| 467 498 | 
             
              aliases:
         | 
| 468 499 | 
             
              - byond
         | 
| 469 500 |  | 
| 470 501 | 
             
            DOT:
         | 
| 471 | 
            -
              type:  | 
| 502 | 
            +
              type: data
         | 
| 472 503 | 
             
              lexer: Text only
         | 
| 473 | 
            -
              primary_extension: .dot
         | 
| 474 504 | 
             
              extensions:
         | 
| 505 | 
            +
              - .dot
         | 
| 475 506 | 
             
              - .gv
         | 
| 476 507 |  | 
| 477 508 | 
             
            Darcs Patch:
         | 
| 478 509 | 
             
              search_term: dpatch
         | 
| 479 510 | 
             
              aliases:
         | 
| 480 511 | 
             
              - dpatch
         | 
| 481 | 
            -
              primary_extension: .darcspatch
         | 
| 482 512 | 
             
              extensions:
         | 
| 513 | 
            +
              - .darcspatch
         | 
| 483 514 | 
             
              - .dpatch
         | 
| 484 515 |  | 
| 485 516 | 
             
            Dart:
         | 
| 486 517 | 
             
              type: programming
         | 
| 487 518 | 
             
              color: "#98BAD6"
         | 
| 488 | 
            -
               | 
| 519 | 
            +
              extensions:
         | 
| 520 | 
            +
              - .dart
         | 
| 489 521 |  | 
| 490 522 | 
             
            DCPU-16 ASM:
         | 
| 491 523 | 
             
              type: programming
         | 
| 492 524 | 
             
              lexer: dasm16
         | 
| 493 | 
            -
              primary_extension: .dasm16
         | 
| 494 525 | 
             
              extensions:
         | 
| 526 | 
            +
              - .dasm16
         | 
| 495 527 | 
             
              - .dasm
         | 
| 496 528 | 
             
              aliases:
         | 
| 497 529 | 
             
              - dasm16
         | 
| 498 530 |  | 
| 499 531 | 
             
            Diff:
         | 
| 500 | 
            -
               | 
| 532 | 
            +
              extensions:
         | 
| 533 | 
            +
              - .diff
         | 
| 501 534 |  | 
| 502 535 | 
             
            Dogescript:
         | 
| 503 536 | 
             
              type: programming
         | 
| 504 537 | 
             
              lexer: Text only
         | 
| 505 538 | 
             
              color: "#cca760"
         | 
| 506 | 
            -
               | 
| 539 | 
            +
              extensions:
         | 
| 540 | 
            +
              - .djs
         | 
| 507 541 |  | 
| 508 542 | 
             
            Dylan:
         | 
| 509 543 | 
             
              type: programming
         | 
| 510 544 | 
             
              color: "#3ebc27"
         | 
| 511 | 
            -
              primary_extension: .dylan
         | 
| 512 545 | 
             
              extensions:
         | 
| 546 | 
            +
              - .dylan
         | 
| 513 547 | 
             
              - .intr
         | 
| 514 548 | 
             
              - .lid
         | 
| 515 549 |  | 
| @@ -517,47 +551,51 @@ E: | |
| 517 551 | 
             
              type: programming
         | 
| 518 552 | 
             
              color: "#ccce35"
         | 
| 519 553 | 
             
              lexer: Text only
         | 
| 520 | 
            -
               | 
| 554 | 
            +
              extensions:
         | 
| 555 | 
            +
              - .E
         | 
| 521 556 |  | 
| 522 557 | 
             
            Ecere Projects:
         | 
| 523 558 | 
             
              type: data
         | 
| 524 559 | 
             
              group: JavaScript
         | 
| 525 560 | 
             
              lexer: JSON
         | 
| 526 | 
            -
               | 
| 561 | 
            +
              extensions:
         | 
| 562 | 
            +
              - .epj
         | 
| 527 563 |  | 
| 528 564 | 
             
            ECL:
         | 
| 529 565 | 
             
              type: programming
         | 
| 530 566 | 
             
              color: "#8a1267"
         | 
| 531 | 
            -
              primary_extension: .ecl
         | 
| 532 567 | 
             
              lexer: ECL
         | 
| 533 568 | 
             
              extensions:
         | 
| 569 | 
            +
              - .ecl
         | 
| 534 570 | 
             
              - .eclxml
         | 
| 535 571 |  | 
| 536 572 | 
             
            Eagle:
         | 
| 537 573 | 
             
              type: markup
         | 
| 538 574 | 
             
              color: "#3994bc"
         | 
| 539 575 | 
             
              lexer: XML
         | 
| 540 | 
            -
              primary_extension: .sch
         | 
| 541 576 | 
             
              extensions:
         | 
| 577 | 
            +
              - .sch
         | 
| 542 578 | 
             
              - .brd
         | 
| 543 579 |  | 
| 544 580 | 
             
            Eiffel:
         | 
| 545 581 | 
             
              type: programming
         | 
| 546 582 | 
             
              lexer: Text only
         | 
| 547 583 | 
             
              color: "#946d57"
         | 
| 548 | 
            -
               | 
| 584 | 
            +
              extensions:
         | 
| 585 | 
            +
              - .e
         | 
| 549 586 |  | 
| 550 587 | 
             
            Elixir:
         | 
| 551 588 | 
             
              type: programming
         | 
| 552 589 | 
             
              color: "#6e4a7e"
         | 
| 553 | 
            -
              primary_extension: .ex
         | 
| 554 590 | 
             
              extensions:
         | 
| 591 | 
            +
              - .ex
         | 
| 555 592 | 
             
              - .exs
         | 
| 556 593 |  | 
| 557 594 | 
             
            Elm:
         | 
| 558 595 | 
             
              type: programming
         | 
| 559 596 | 
             
              lexer: Haskell
         | 
| 560 | 
            -
               | 
| 597 | 
            +
              extensions:
         | 
| 598 | 
            +
              - .elm
         | 
| 561 599 |  | 
| 562 600 | 
             
            Emacs Lisp:
         | 
| 563 601 | 
             
              type: programming
         | 
| @@ -566,17 +604,17 @@ Emacs Lisp: | |
| 566 604 | 
             
              aliases:
         | 
| 567 605 | 
             
              - elisp
         | 
| 568 606 | 
             
              - emacs
         | 
| 569 | 
            -
              primary_extension: .el
         | 
| 570 607 | 
             
              filenames:
         | 
| 571 608 | 
             
              - .emacs
         | 
| 572 609 | 
             
              extensions:
         | 
| 610 | 
            +
              - .el
         | 
| 573 611 | 
             
              - .emacs
         | 
| 574 612 |  | 
| 575 613 | 
             
            Erlang:
         | 
| 576 614 | 
             
              type: programming
         | 
| 577 615 | 
             
              color: "#0faf8d"
         | 
| 578 | 
            -
              primary_extension: .erl
         | 
| 579 616 | 
             
              extensions:
         | 
| 617 | 
            +
              - .erl
         | 
| 580 618 | 
             
              - .hrl
         | 
| 581 619 |  | 
| 582 620 | 
             
            F#:
         | 
| @@ -586,25 +624,25 @@ F#: | |
| 586 624 | 
             
              search_term: fsharp
         | 
| 587 625 | 
             
              aliases:
         | 
| 588 626 | 
             
              - fsharp
         | 
| 589 | 
            -
              primary_extension: .fs
         | 
| 590 627 | 
             
              extensions:
         | 
| 628 | 
            +
              - .fs
         | 
| 591 629 | 
             
              - .fsi
         | 
| 592 630 | 
             
              - .fsx
         | 
| 593 631 |  | 
| 594 632 | 
             
            FLUX:
         | 
| 595 633 | 
             
              type: programming
         | 
| 596 634 | 
             
              color: "#33CCFF"
         | 
| 597 | 
            -
              primary_extension: .fx
         | 
| 598 635 | 
             
              lexer: Text only
         | 
| 599 636 | 
             
              extensions:
         | 
| 637 | 
            +
              - .fx
         | 
| 600 638 | 
             
              - .flux
         | 
| 601 639 |  | 
| 602 640 | 
             
            FORTRAN:
         | 
| 603 641 | 
             
              type: programming
         | 
| 604 642 | 
             
              lexer: Fortran
         | 
| 605 643 | 
             
              color: "#4d41b1"
         | 
| 606 | 
            -
              primary_extension: .f90
         | 
| 607 644 | 
             
              extensions:
         | 
| 645 | 
            +
              - .f90
         | 
| 608 646 | 
             
              - .F
         | 
| 609 647 | 
             
              - .F03
         | 
| 610 648 | 
             
              - .F08
         | 
| @@ -624,7 +662,8 @@ FORTRAN: | |
| 624 662 | 
             
            Factor:
         | 
| 625 663 | 
             
              type: programming
         | 
| 626 664 | 
             
              color: "#636746"
         | 
| 627 | 
            -
               | 
| 665 | 
            +
              extensions:
         | 
| 666 | 
            +
              - .factor
         | 
| 628 667 | 
             
              filenames:
         | 
| 629 668 | 
             
                - .factor-rc
         | 
| 630 669 | 
             
                - .factor-boot-rc
         | 
| @@ -632,8 +671,8 @@ Factor: | |
| 632 671 | 
             
            Fancy:
         | 
| 633 672 | 
             
              type: programming
         | 
| 634 673 | 
             
              color: "#7b9db4"
         | 
| 635 | 
            -
              primary_extension: .fy
         | 
| 636 674 | 
             
              extensions:
         | 
| 675 | 
            +
              - .fy
         | 
| 637 676 | 
             
              - .fancypack
         | 
| 638 677 | 
             
              filenames:
         | 
| 639 678 | 
             
              - Fakefile
         | 
| @@ -641,31 +680,34 @@ Fancy: | |
| 641 680 | 
             
            Fantom:
         | 
| 642 681 | 
             
              type: programming
         | 
| 643 682 | 
             
              color: "#dbded5"
         | 
| 644 | 
            -
               | 
| 683 | 
            +
              extensions:
         | 
| 684 | 
            +
              - .fan
         | 
| 645 685 |  | 
| 646 686 | 
             
            Forth:
         | 
| 647 687 | 
             
              type: programming
         | 
| 648 | 
            -
              primary_extension: .fth
         | 
| 649 688 | 
             
              color: "#341708"
         | 
| 650 689 | 
             
              lexer: Text only
         | 
| 651 690 | 
             
              extensions:
         | 
| 691 | 
            +
              - .fth
         | 
| 652 692 | 
             
              - .4th
         | 
| 653 693 |  | 
| 654 694 | 
             
            Frege:
         | 
| 655 695 | 
             
              type: programming
         | 
| 656 696 | 
             
              color: "#00cafe"
         | 
| 657 697 | 
             
              lexer: Haskell
         | 
| 658 | 
            -
               | 
| 698 | 
            +
              extensions:
         | 
| 699 | 
            +
              - .fr
         | 
| 659 700 |  | 
| 660 701 | 
             
            Game Maker Language:
         | 
| 661 702 | 
             
              type: programming
         | 
| 703 | 
            +
              color: "#8ad353"
         | 
| 662 704 | 
             
              lexer: JavaScript
         | 
| 663 | 
            -
               | 
| 705 | 
            +
              extensions:
         | 
| 706 | 
            +
              - .gml
         | 
| 664 707 |  | 
| 665 708 | 
             
            GAP:
         | 
| 666 709 | 
             
              type: programming
         | 
| 667 710 | 
             
              lexer: Text only
         | 
| 668 | 
            -
              primary_extension: .g
         | 
| 669 711 | 
             
              extensions:
         | 
| 670 712 | 
             
              - .g
         | 
| 671 713 | 
             
              - .gap
         | 
| @@ -675,15 +717,15 @@ GAP: | |
| 675 717 | 
             
            GAS:
         | 
| 676 718 | 
             
              type: programming
         | 
| 677 719 | 
             
              group: Assembly
         | 
| 678 | 
            -
              primary_extension: .s
         | 
| 679 720 | 
             
              extensions:
         | 
| 721 | 
            +
              - .s
         | 
| 680 722 | 
             
              - .S
         | 
| 681 723 |  | 
| 682 724 | 
             
            GLSL:
         | 
| 683 725 | 
             
              group: C
         | 
| 684 726 | 
             
              type: programming
         | 
| 685 | 
            -
              primary_extension: .glsl
         | 
| 686 727 | 
             
              extensions:
         | 
| 728 | 
            +
              - .glsl
         | 
| 687 729 | 
             
              - .fp
         | 
| 688 730 | 
             
              - .frag
         | 
| 689 731 | 
             
              - .fshader
         | 
| @@ -695,39 +737,43 @@ GLSL: | |
| 695 737 | 
             
              - .vshader
         | 
| 696 738 |  | 
| 697 739 | 
             
            Genshi:
         | 
| 698 | 
            -
               | 
| 740 | 
            +
              extensions:
         | 
| 741 | 
            +
              - .kid
         | 
| 699 742 |  | 
| 700 743 | 
             
            Gentoo Ebuild:
         | 
| 701 744 | 
             
              group: Shell
         | 
| 702 745 | 
             
              lexer: Bash
         | 
| 703 | 
            -
               | 
| 746 | 
            +
              extensions:
         | 
| 747 | 
            +
              - .ebuild
         | 
| 704 748 |  | 
| 705 749 | 
             
            Gentoo Eclass:
         | 
| 706 750 | 
             
              group: Shell
         | 
| 707 751 | 
             
              lexer: Bash
         | 
| 708 | 
            -
               | 
| 752 | 
            +
              extensions:
         | 
| 753 | 
            +
              - .eclass
         | 
| 709 754 |  | 
| 710 755 | 
             
            Gettext Catalog:
         | 
| 711 756 | 
             
              search_term: pot
         | 
| 712 757 | 
             
              searchable: false
         | 
| 713 758 | 
             
              aliases:
         | 
| 714 759 | 
             
              - pot
         | 
| 715 | 
            -
              primary_extension: .po
         | 
| 716 760 | 
             
              extensions:
         | 
| 761 | 
            +
              - .po
         | 
| 717 762 | 
             
              - .pot
         | 
| 718 763 |  | 
| 719 764 | 
             
            Glyph:
         | 
| 720 765 | 
             
              type: programming
         | 
| 721 766 | 
             
              color: "#e4cc98"
         | 
| 722 767 | 
             
              lexer: Tcl
         | 
| 723 | 
            -
               | 
| 768 | 
            +
              extensions:
         | 
| 769 | 
            +
              - .glf
         | 
| 724 770 |  | 
| 725 771 | 
             
            Gnuplot:
         | 
| 726 772 | 
             
              type: programming
         | 
| 727 773 | 
             
              color: "#f0a9f0"
         | 
| 728 774 | 
             
              lexer: Gnuplot
         | 
| 729 | 
            -
              primary_extension: .gp
         | 
| 730 775 | 
             
              extensions:
         | 
| 776 | 
            +
              - .gp
         | 
| 731 777 | 
             
              - .gnu
         | 
| 732 778 | 
             
              - .gnuplot
         | 
| 733 779 | 
             
              - .plot
         | 
| @@ -736,12 +782,14 @@ Gnuplot: | |
| 736 782 | 
             
            Go:
         | 
| 737 783 | 
             
              type: programming
         | 
| 738 784 | 
             
              color: "#375eab"
         | 
| 739 | 
            -
               | 
| 785 | 
            +
              extensions:
         | 
| 786 | 
            +
              - .go
         | 
| 740 787 |  | 
| 741 788 | 
             
            Gosu:
         | 
| 742 789 | 
             
              type: programming
         | 
| 743 790 | 
             
              color: "#82937f"
         | 
| 744 | 
            -
               | 
| 791 | 
            +
              extensions:
         | 
| 792 | 
            +
              - .gs
         | 
| 745 793 |  | 
| 746 794 | 
             
            Grammatical Framework:
         | 
| 747 795 | 
             
              type: programming
         | 
| @@ -749,13 +797,14 @@ Grammatical Framework: | |
| 749 797 | 
             
              aliases:
         | 
| 750 798 | 
             
              - gf
         | 
| 751 799 | 
             
              wrap: false
         | 
| 752 | 
            -
               | 
| 800 | 
            +
              extensions:
         | 
| 801 | 
            +
              - .gf
         | 
| 753 802 | 
             
              searchable: true
         | 
| 754 803 | 
             
              color: "#ff0000"
         | 
| 755 804 |  | 
| 756 805 | 
             
            Groff:
         | 
| 757 | 
            -
              primary_extension: .man
         | 
| 758 806 | 
             
              extensions:
         | 
| 807 | 
            +
              - .man
         | 
| 759 808 | 
             
              - '.1'
         | 
| 760 809 | 
             
              - '.2'
         | 
| 761 810 | 
             
              - '.3'
         | 
| @@ -768,7 +817,8 @@ Groovy: | |
| 768 817 | 
             
              type: programming
         | 
| 769 818 | 
             
              ace_mode: groovy
         | 
| 770 819 | 
             
              color: "#e69f56"
         | 
| 771 | 
            -
               | 
| 820 | 
            +
              extensions:
         | 
| 821 | 
            +
              - .groovy
         | 
| 772 822 | 
             
              interpreters:
         | 
| 773 823 | 
             
              - groovy
         | 
| 774 824 |  | 
| @@ -777,15 +827,16 @@ Groovy Server Pages: | |
| 777 827 | 
             
              lexer: Java Server Page
         | 
| 778 828 | 
             
              aliases:
         | 
| 779 829 | 
             
              - gsp
         | 
| 780 | 
            -
               | 
| 830 | 
            +
              extensions:
         | 
| 831 | 
            +
              - .gsp
         | 
| 781 832 |  | 
| 782 833 | 
             
            HTML:
         | 
| 783 834 | 
             
              type: markup
         | 
| 784 835 | 
             
              ace_mode: html
         | 
| 785 836 | 
             
              aliases:
         | 
| 786 837 | 
             
              - xhtml
         | 
| 787 | 
            -
              primary_extension: .html
         | 
| 788 838 | 
             
              extensions:
         | 
| 839 | 
            +
              - .html
         | 
| 789 840 | 
             
              - .htm
         | 
| 790 841 | 
             
              - .html.hl
         | 
| 791 842 | 
             
              - .st
         | 
| @@ -795,10 +846,9 @@ HTML+Django: | |
| 795 846 | 
             
              type: markup
         | 
| 796 847 | 
             
              group: HTML
         | 
| 797 848 | 
             
              lexer: HTML+Django/Jinja
         | 
| 798 | 
            -
              primary_extension: .mustache # TODO: This is incorrect
         | 
| 799 849 | 
             
              extensions:
         | 
| 800 | 
            -
              - .jinja
         | 
| 801 850 | 
             
              - .mustache
         | 
| 851 | 
            +
              - .jinja
         | 
| 802 852 |  | 
| 803 853 | 
             
            HTML+ERB:
         | 
| 804 854 | 
             
              type: markup
         | 
| @@ -806,8 +856,8 @@ HTML+ERB: | |
| 806 856 | 
             
              lexer: RHTML
         | 
| 807 857 | 
             
              aliases:
         | 
| 808 858 | 
             
              - erb
         | 
| 809 | 
            -
              primary_extension: .erb
         | 
| 810 859 | 
             
              extensions:
         | 
| 860 | 
            +
              - .erb
         | 
| 811 861 | 
             
              - .erb.deface
         | 
| 812 862 | 
             
              - .html.erb
         | 
| 813 863 | 
             
              - .html.erb.deface
         | 
| @@ -815,25 +865,27 @@ HTML+ERB: | |
| 815 865 | 
             
            HTML+PHP:
         | 
| 816 866 | 
             
              type: markup
         | 
| 817 867 | 
             
              group: HTML
         | 
| 818 | 
            -
               | 
| 868 | 
            +
              extensions:
         | 
| 869 | 
            +
              - .phtml
         | 
| 819 870 |  | 
| 820 871 | 
             
            HTTP:
         | 
| 821 872 | 
             
              type: data
         | 
| 822 | 
            -
               | 
| 873 | 
            +
              extensions:
         | 
| 874 | 
            +
              - .http
         | 
| 823 875 |  | 
| 824 876 | 
             
            Haml:
         | 
| 825 877 | 
             
              group: HTML
         | 
| 826 878 | 
             
              type: markup
         | 
| 827 | 
            -
              primary_extension: .haml
         | 
| 828 879 | 
             
              extensions:
         | 
| 880 | 
            +
              - .haml
         | 
| 829 881 | 
             
              - .haml.deface
         | 
| 830 882 | 
             
              - .html.haml.deface
         | 
| 831 883 |  | 
| 832 884 | 
             
            Handlebars:
         | 
| 833 885 | 
             
              type: markup
         | 
| 834 886 | 
             
              lexer: Text only
         | 
| 835 | 
            -
              primary_extension: .handlebars
         | 
| 836 887 | 
             
              extensions:
         | 
| 888 | 
            +
              - .handlebars
         | 
| 837 889 | 
             
              - .hbs
         | 
| 838 890 | 
             
              - .html.handlebars
         | 
| 839 891 | 
             
              - .html.hbs
         | 
| @@ -842,21 +894,22 @@ Harbour: | |
| 842 894 | 
             
              type: programming
         | 
| 843 895 | 
             
              lexer: Text only
         | 
| 844 896 | 
             
              color: "#0e60e3"
         | 
| 845 | 
            -
               | 
| 897 | 
            +
              extensions:
         | 
| 898 | 
            +
              - .hb
         | 
| 846 899 |  | 
| 847 900 | 
             
            Haskell:
         | 
| 848 901 | 
             
              type: programming
         | 
| 849 902 | 
             
              color: "#29b544"
         | 
| 850 | 
            -
              primary_extension: .hs
         | 
| 851 903 | 
             
              extensions:
         | 
| 904 | 
            +
              - .hs
         | 
| 852 905 | 
             
              - .hsc
         | 
| 853 906 |  | 
| 854 907 | 
             
            Haxe:
         | 
| 855 908 | 
             
              type: programming
         | 
| 856 909 | 
             
              ace_mode: haxe
         | 
| 857 910 | 
             
              color: "#346d51"
         | 
| 858 | 
            -
              primary_extension: .hx
         | 
| 859 911 | 
             
              extensions:
         | 
| 912 | 
            +
              - .hx
         | 
| 860 913 | 
             
              - .hxsl
         | 
| 861 914 |  | 
| 862 915 | 
             
            Hy:
         | 
| @@ -864,13 +917,15 @@ Hy: | |
| 864 917 | 
             
              lexer: Clojure
         | 
| 865 918 | 
             
              ace_mode: clojure
         | 
| 866 919 | 
             
              color: "#7891b1"
         | 
| 867 | 
            -
               | 
| 920 | 
            +
              extensions:
         | 
| 921 | 
            +
              - .hy
         | 
| 868 922 |  | 
| 869 923 | 
             
            IDL:
         | 
| 870 924 | 
             
              type: programming
         | 
| 871 925 | 
             
              lexer: Text only
         | 
| 872 926 | 
             
              color: "#e3592c"
         | 
| 873 | 
            -
               | 
| 927 | 
            +
              extensions:
         | 
| 928 | 
            +
              - .pro
         | 
| 874 929 |  | 
| 875 930 | 
             
            INI:
         | 
| 876 931 | 
             
              type: data
         | 
| @@ -878,29 +933,30 @@ INI: | |
| 878 933 | 
             
              - .ini
         | 
| 879 934 | 
             
              - .prefs
         | 
| 880 935 | 
             
              - .properties
         | 
| 881 | 
            -
              primary_extension: .ini
         | 
| 882 936 |  | 
| 883 937 | 
             
            Inno Setup:
         | 
| 884 | 
            -
               | 
| 938 | 
            +
              extensions:
         | 
| 939 | 
            +
              - .iss
         | 
| 885 940 | 
             
              lexer: Text only
         | 
| 886 941 |  | 
| 887 942 | 
             
            Idris:
         | 
| 888 943 | 
             
              type: programming
         | 
| 889 944 | 
             
              lexer: Text only
         | 
| 890 | 
            -
              primary_extension: .idr
         | 
| 891 945 | 
             
              extensions:
         | 
| 946 | 
            +
              - .idr
         | 
| 892 947 | 
             
              - .lidr
         | 
| 893 948 |  | 
| 894 949 | 
             
            Inform 7:
         | 
| 895 950 | 
             
              type: programming
         | 
| 896 951 | 
             
              lexer: Text only
         | 
| 897 952 | 
             
              wrap: true
         | 
| 898 | 
            -
              primary_extension: .ni
         | 
| 899 953 | 
             
              extensions:
         | 
| 954 | 
            +
              - .ni
         | 
| 900 955 | 
             
              - .i7x
         | 
| 901 956 |  | 
| 902 957 | 
             
            Inno Setup:
         | 
| 903 | 
            -
               | 
| 958 | 
            +
              extensions:
         | 
| 959 | 
            +
              - .iss
         | 
| 904 960 | 
             
              lexer: Text only
         | 
| 905 961 |  | 
| 906 962 | 
             
            IRC log:
         | 
| @@ -908,39 +964,42 @@ IRC log: | |
| 908 964 | 
             
              search_term: irc
         | 
| 909 965 | 
             
              aliases:
         | 
| 910 966 | 
             
              - irc
         | 
| 911 | 
            -
              primary_extension: .irclog
         | 
| 912 967 | 
             
              extensions:
         | 
| 968 | 
            +
              - .irclog
         | 
| 913 969 | 
             
              - .weechatlog
         | 
| 914 970 |  | 
| 915 971 | 
             
            Io:
         | 
| 916 972 | 
             
              type: programming
         | 
| 917 973 | 
             
              color: "#a9188d"
         | 
| 918 | 
            -
               | 
| 974 | 
            +
              extensions:
         | 
| 975 | 
            +
              - .io
         | 
| 919 976 |  | 
| 920 977 | 
             
            Ioke:
         | 
| 921 978 | 
             
              type: programming
         | 
| 922 979 | 
             
              color: "#078193"
         | 
| 923 | 
            -
               | 
| 980 | 
            +
              extensions:
         | 
| 981 | 
            +
              - .ik
         | 
| 924 982 |  | 
| 925 983 | 
             
            J:
         | 
| 926 984 | 
             
              type: programming
         | 
| 927 985 | 
             
              lexer: Text only
         | 
| 928 | 
            -
               | 
| 986 | 
            +
              extensions:
         | 
| 987 | 
            +
              - .ijs
         | 
| 929 988 |  | 
| 930 989 | 
             
            JSON:
         | 
| 931 990 | 
             
              type: data
         | 
| 932 991 | 
             
              group: JavaScript
         | 
| 933 992 | 
             
              ace_mode: json
         | 
| 934 993 | 
             
              searchable: false
         | 
| 935 | 
            -
              primary_extension: .json
         | 
| 936 994 | 
             
              extensions:
         | 
| 995 | 
            +
              - .json
         | 
| 937 996 | 
             
              - .sublime-keymap
         | 
| 938 | 
            -
              - .sublime_metrics
         | 
| 939 997 | 
             
              - .sublime-mousemap
         | 
| 940 998 | 
             
              - .sublime-project
         | 
| 941 | 
            -
              - .sublime_session
         | 
| 942 999 | 
             
              - .sublime-settings
         | 
| 943 1000 | 
             
              - .sublime-workspace
         | 
| 1001 | 
            +
              - .sublime_metrics
         | 
| 1002 | 
            +
              - .sublime_session
         | 
| 944 1003 | 
             
              filenames:
         | 
| 945 1004 | 
             
              - .jshintrc
         | 
| 946 1005 | 
             
              - composer.lock
         | 
| @@ -948,31 +1007,36 @@ JSON: | |
| 948 1007 | 
             
            JSON5:
         | 
| 949 1008 | 
             
              type: data
         | 
| 950 1009 | 
             
              lexer: JavaScript
         | 
| 951 | 
            -
               | 
| 1010 | 
            +
              extensions:
         | 
| 1011 | 
            +
              - .json5
         | 
| 952 1012 |  | 
| 953 1013 | 
             
            JSONLD:
         | 
| 954 1014 | 
             
              type: data
         | 
| 955 1015 | 
             
              group: JavaScript
         | 
| 956 1016 | 
             
              ace_mode: json
         | 
| 957 1017 | 
             
              lexer: JavaScript
         | 
| 958 | 
            -
               | 
| 1018 | 
            +
              extensions:
         | 
| 1019 | 
            +
              - .jsonld
         | 
| 959 1020 |  | 
| 960 1021 | 
             
            JSONiq:
         | 
| 961 1022 | 
             
              type: programming
         | 
| 962 1023 | 
             
              ace_mode: jsoniq
         | 
| 963 1024 | 
             
              lexer: XQuery
         | 
| 964 | 
            -
               | 
| 1025 | 
            +
              extensions:
         | 
| 1026 | 
            +
              - .jq
         | 
| 965 1027 |  | 
| 966 1028 | 
             
            Jade:
         | 
| 967 1029 | 
             
              group: HTML
         | 
| 968 1030 | 
             
              type: markup
         | 
| 969 | 
            -
               | 
| 1031 | 
            +
              extensions:
         | 
| 1032 | 
            +
              - .jade
         | 
| 970 1033 |  | 
| 971 1034 | 
             
            Java:
         | 
| 972 1035 | 
             
              type: programming
         | 
| 973 1036 | 
             
              ace_mode: java
         | 
| 974 1037 | 
             
              color: "#b07219"
         | 
| 975 | 
            -
               | 
| 1038 | 
            +
              extensions:
         | 
| 1039 | 
            +
              - .java
         | 
| 976 1040 |  | 
| 977 1041 | 
             
            Java Server Pages:
         | 
| 978 1042 | 
             
              group: Java
         | 
| @@ -980,17 +1044,18 @@ Java Server Pages: | |
| 980 1044 | 
             
              search_term: jsp
         | 
| 981 1045 | 
             
              aliases:
         | 
| 982 1046 | 
             
              - jsp
         | 
| 983 | 
            -
               | 
| 1047 | 
            +
              extensions:
         | 
| 1048 | 
            +
              - .jsp
         | 
| 984 1049 |  | 
| 985 1050 | 
             
            JavaScript:
         | 
| 986 1051 | 
             
              type: programming
         | 
| 987 1052 | 
             
              ace_mode: javascript
         | 
| 988 | 
            -
              color: "# | 
| 1053 | 
            +
              color: "#f1e05a"
         | 
| 989 1054 | 
             
              aliases:
         | 
| 990 1055 | 
             
              - js
         | 
| 991 1056 | 
             
              - node
         | 
| 992 | 
            -
              primary_extension: .js
         | 
| 993 1057 | 
             
              extensions:
         | 
| 1058 | 
            +
              - .js
         | 
| 994 1059 | 
             
              - ._js
         | 
| 995 1060 | 
             
              - .bones
         | 
| 996 1061 | 
             
              - .es6
         | 
| @@ -1010,74 +1075,82 @@ JavaScript: | |
| 1010 1075 |  | 
| 1011 1076 | 
             
            Julia:
         | 
| 1012 1077 | 
             
              type: programming
         | 
| 1013 | 
            -
               | 
| 1078 | 
            +
              extensions:
         | 
| 1079 | 
            +
              - .jl
         | 
| 1014 1080 | 
             
              color: "#a270ba"
         | 
| 1015 1081 |  | 
| 1016 1082 | 
             
            KRL:
         | 
| 1017 1083 | 
             
              lexer: Text only
         | 
| 1018 1084 | 
             
              type: programming
         | 
| 1019 1085 | 
             
              color: "#f5c800"
         | 
| 1020 | 
            -
               | 
| 1086 | 
            +
              extensions:
         | 
| 1087 | 
            +
              - .krl
         | 
| 1021 1088 |  | 
| 1022 1089 | 
             
            Kit:
         | 
| 1023 1090 | 
             
              type: markup
         | 
| 1024 1091 | 
             
              lexer: HTML
         | 
| 1025 1092 | 
             
              ace_mode: html
         | 
| 1026 | 
            -
               | 
| 1093 | 
            +
              extensions:
         | 
| 1094 | 
            +
              - .kit
         | 
| 1027 1095 |  | 
| 1028 1096 | 
             
            Kotlin:
         | 
| 1029 1097 | 
             
              type: programming
         | 
| 1030 | 
            -
              primary_extension: .kt
         | 
| 1031 1098 | 
             
              extensions:
         | 
| 1099 | 
            +
              - .kt
         | 
| 1032 1100 | 
             
              - .ktm
         | 
| 1033 1101 | 
             
              - .kts
         | 
| 1034 1102 |  | 
| 1035 1103 | 
             
            LFE:
         | 
| 1036 1104 | 
             
              type: programming
         | 
| 1037 | 
            -
               | 
| 1105 | 
            +
              extensions:
         | 
| 1106 | 
            +
              - .lfe
         | 
| 1038 1107 | 
             
              color: "#004200"
         | 
| 1039 1108 | 
             
              lexer: Common Lisp
         | 
| 1040 1109 | 
             
              group: Erlang
         | 
| 1041 1110 |  | 
| 1042 1111 | 
             
            LLVM:
         | 
| 1043 | 
            -
               | 
| 1112 | 
            +
              extensions:
         | 
| 1113 | 
            +
              - .ll
         | 
| 1044 1114 |  | 
| 1045 1115 | 
             
            Lasso:
         | 
| 1046 1116 | 
             
              type: programming
         | 
| 1047 1117 | 
             
              lexer: Lasso
         | 
| 1048 1118 | 
             
              color: "#2584c3"
         | 
| 1049 | 
            -
               | 
| 1119 | 
            +
              extensions:
         | 
| 1120 | 
            +
              - .lasso
         | 
| 1050 1121 |  | 
| 1051 1122 | 
             
            Latte:
         | 
| 1052 1123 | 
             
              type: markup
         | 
| 1053 1124 | 
             
              color: "#A8FF97"
         | 
| 1054 1125 | 
             
              group: HTML
         | 
| 1055 1126 | 
             
              lexer: Smarty
         | 
| 1056 | 
            -
               | 
| 1127 | 
            +
              extensions:
         | 
| 1128 | 
            +
              - .latte
         | 
| 1057 1129 |  | 
| 1058 1130 | 
             
            Less:
         | 
| 1059 1131 | 
             
              type: markup
         | 
| 1060 1132 | 
             
              group: CSS
         | 
| 1061 1133 | 
             
              lexer: CSS
         | 
| 1062 | 
            -
               | 
| 1134 | 
            +
              extensions:
         | 
| 1135 | 
            +
              - .less
         | 
| 1063 1136 |  | 
| 1064 1137 | 
             
            LilyPond:
         | 
| 1065 1138 | 
             
              lexer: Text only
         | 
| 1066 | 
            -
              primary_extension: .ly
         | 
| 1067 1139 | 
             
              extensions:
         | 
| 1140 | 
            +
              - .ly
         | 
| 1068 1141 | 
             
              - .ily
         | 
| 1069 1142 |  | 
| 1070 1143 | 
             
            Liquid:
         | 
| 1071 1144 | 
             
              type: markup
         | 
| 1072 1145 | 
             
              lexer: Text only
         | 
| 1073 | 
            -
               | 
| 1146 | 
            +
              extensions:
         | 
| 1147 | 
            +
              - .liquid
         | 
| 1074 1148 |  | 
| 1075 1149 | 
             
            Literate Agda:
         | 
| 1076 1150 | 
             
              type: programming
         | 
| 1077 1151 | 
             
              group: Agda
         | 
| 1078 | 
            -
              primary_extension: .lagda
         | 
| 1079 1152 | 
             
              extensions:
         | 
| 1080 | 
            -
             | 
| 1153 | 
            +
              - .lagda
         | 
| 1081 1154 |  | 
| 1082 1155 | 
             
            Literate CoffeeScript:
         | 
| 1083 1156 | 
             
              type: programming
         | 
| @@ -1088,7 +1161,8 @@ Literate CoffeeScript: | |
| 1088 1161 | 
             
              search_term: litcoffee
         | 
| 1089 1162 | 
             
              aliases:
         | 
| 1090 1163 | 
             
              - litcoffee
         | 
| 1091 | 
            -
               | 
| 1164 | 
            +
              extensions:
         | 
| 1165 | 
            +
              - .litcoffee
         | 
| 1092 1166 |  | 
| 1093 1167 | 
             
            Literate Haskell:
         | 
| 1094 1168 | 
             
              type: programming
         | 
| @@ -1096,7 +1170,8 @@ Literate Haskell: | |
| 1096 1170 | 
             
              search_term: lhs
         | 
| 1097 1171 | 
             
              aliases:
         | 
| 1098 1172 | 
             
              - lhs
         | 
| 1099 | 
            -
               | 
| 1173 | 
            +
              extensions:
         | 
| 1174 | 
            +
              - .lhs
         | 
| 1100 1175 |  | 
| 1101 1176 | 
             
            LiveScript:
         | 
| 1102 1177 | 
             
              type: programming
         | 
| @@ -1104,28 +1179,29 @@ LiveScript: | |
| 1104 1179 | 
             
              color: "#499886"
         | 
| 1105 1180 | 
             
              aliases:
         | 
| 1106 1181 | 
             
              - ls
         | 
| 1107 | 
            -
              primary_extension: .ls
         | 
| 1108 1182 | 
             
              extensions:
         | 
| 1183 | 
            +
              - .ls
         | 
| 1109 1184 | 
             
              - ._ls
         | 
| 1110 1185 | 
             
              filenames:
         | 
| 1111 1186 | 
             
              - Slakefile
         | 
| 1112 1187 |  | 
| 1113 1188 | 
             
            Logos:
         | 
| 1114 1189 | 
             
              type: programming
         | 
| 1115 | 
            -
               | 
| 1190 | 
            +
              extensions:
         | 
| 1191 | 
            +
              - .xm
         | 
| 1116 1192 |  | 
| 1117 1193 | 
             
            Logtalk:
         | 
| 1118 1194 | 
             
              type: programming
         | 
| 1119 | 
            -
              primary_extension: .lgt
         | 
| 1120 1195 | 
             
              extensions:
         | 
| 1196 | 
            +
              - .lgt
         | 
| 1121 1197 | 
             
              - .logtalk
         | 
| 1122 1198 |  | 
| 1123 1199 | 
             
            Lua:
         | 
| 1124 1200 | 
             
              type: programming
         | 
| 1125 1201 | 
             
              ace_mode: lua
         | 
| 1126 1202 | 
             
              color: "#fa1fa1"
         | 
| 1127 | 
            -
              primary_extension: .lua
         | 
| 1128 1203 | 
             
              extensions:
         | 
| 1204 | 
            +
              - .lua
         | 
| 1129 1205 | 
             
              - .nse
         | 
| 1130 1206 | 
             
              - .rbxs
         | 
| 1131 1207 | 
             
              interpreters:
         | 
| @@ -1136,15 +1212,16 @@ M: | |
| 1136 1212 | 
             
              lexer: Common Lisp
         | 
| 1137 1213 | 
             
              aliases:
         | 
| 1138 1214 | 
             
              - mumps
         | 
| 1139 | 
            -
              primary_extension: .mumps
         | 
| 1140 1215 | 
             
              extensions:
         | 
| 1216 | 
            +
              - .mumps
         | 
| 1141 1217 | 
             
              - .m
         | 
| 1142 1218 |  | 
| 1143 1219 | 
             
            MTML:
         | 
| 1144 1220 | 
             
              type: markup
         | 
| 1145 1221 | 
             
              lexer: HTML
         | 
| 1146 1222 | 
             
              color: "#0095d9"
         | 
| 1147 | 
            -
               | 
| 1223 | 
            +
              extensions:
         | 
| 1224 | 
            +
              - .mtml
         | 
| 1148 1225 |  | 
| 1149 1226 | 
             
            Makefile:
         | 
| 1150 1227 | 
             
              aliases:
         | 
| @@ -1152,7 +1229,6 @@ Makefile: | |
| 1152 1229 | 
             
              extensions:
         | 
| 1153 1230 | 
             
              - .mak
         | 
| 1154 1231 | 
             
              - .mk
         | 
| 1155 | 
            -
              primary_extension: .mak
         | 
| 1156 1232 | 
             
              filenames:
         | 
| 1157 1233 | 
             
              - makefile
         | 
| 1158 1234 | 
             
              - Makefile
         | 
| @@ -1161,8 +1237,8 @@ Makefile: | |
| 1161 1237 | 
             
              - make
         | 
| 1162 1238 |  | 
| 1163 1239 | 
             
            Mako:
         | 
| 1164 | 
            -
              primary_extension: .mako
         | 
| 1165 1240 | 
             
              extensions:
         | 
| 1241 | 
            +
              - .mako
         | 
| 1166 1242 | 
             
              - .mao
         | 
| 1167 1243 |  | 
| 1168 1244 | 
             
            Markdown:
         | 
| @@ -1170,8 +1246,8 @@ Markdown: | |
| 1170 1246 | 
             
              lexer: Text only
         | 
| 1171 1247 | 
             
              ace_mode: markdown
         | 
| 1172 1248 | 
             
              wrap: true
         | 
| 1173 | 
            -
              primary_extension: .md
         | 
| 1174 1249 | 
             
              extensions:
         | 
| 1250 | 
            +
              - .md
         | 
| 1175 1251 | 
             
              - .markdown
         | 
| 1176 1252 | 
             
              - .mkd
         | 
| 1177 1253 | 
             
              - .mkdown
         | 
| @@ -1182,18 +1258,20 @@ Mask: | |
| 1182 1258 | 
             
              lexer: SCSS
         | 
| 1183 1259 | 
             
              color: "#f97732"
         | 
| 1184 1260 | 
             
              ace_mode: scss
         | 
| 1185 | 
            -
               | 
| 1261 | 
            +
              extensions:
         | 
| 1262 | 
            +
              - .mask
         | 
| 1186 1263 |  | 
| 1187 1264 | 
             
            Mathematica:
         | 
| 1188 1265 | 
             
              type: programming
         | 
| 1189 | 
            -
               | 
| 1266 | 
            +
              extensions:
         | 
| 1267 | 
            +
              - .mathematica
         | 
| 1190 1268 | 
             
              lexer: Text only
         | 
| 1191 1269 |  | 
| 1192 1270 | 
             
            Matlab:
         | 
| 1193 1271 | 
             
              type: programming
         | 
| 1194 1272 | 
             
              color: "#bb92ac"
         | 
| 1195 | 
            -
              primary_extension: .matlab
         | 
| 1196 1273 | 
             
              extensions:
         | 
| 1274 | 
            +
              - .matlab
         | 
| 1197 1275 | 
             
              - .m
         | 
| 1198 1276 |  | 
| 1199 1277 | 
             
            Max:
         | 
| @@ -1204,8 +1282,8 @@ Max: | |
| 1204 1282 | 
             
              - max/msp
         | 
| 1205 1283 | 
             
              - maxmsp
         | 
| 1206 1284 | 
             
              search_term: max/msp
         | 
| 1207 | 
            -
              primary_extension: .maxpat
         | 
| 1208 1285 | 
             
              extensions:
         | 
| 1286 | 
            +
              - .maxpat
         | 
| 1209 1287 | 
             
              - .maxhelp
         | 
| 1210 1288 | 
             
              - .maxproj
         | 
| 1211 1289 | 
             
              - .mxt
         | 
| @@ -1215,15 +1293,12 @@ MediaWiki: | |
| 1215 1293 | 
             
              type: prose
         | 
| 1216 1294 | 
             
              lexer: Text only
         | 
| 1217 1295 | 
             
              wrap: true
         | 
| 1218 | 
            -
               | 
| 1296 | 
            +
              extensions:
         | 
| 1297 | 
            +
              - .mediawiki
         | 
| 1219 1298 |  | 
| 1220 1299 | 
             
            Mercury:
         | 
| 1221 1300 | 
             
              type: programming
         | 
| 1222 | 
            -
              # This is the background colour on the web page.
         | 
| 1223 1301 | 
             
              color: "#abcdef"
         | 
| 1224 | 
            -
              # The primary extension is .m, but lingist won't accept duplicates
         | 
| 1225 | 
            -
              primary_extension: .mercury
         | 
| 1226 | 
            -
              # Mercury's syntax is not prolog syntax, but they do share the lexer
         | 
| 1227 1302 | 
             
              lexer: Prolog
         | 
| 1228 1303 | 
             
              ace_mode: prolog
         | 
| 1229 1304 | 
             
              extensions:
         | 
| @@ -1232,15 +1307,16 @@ Mercury: | |
| 1232 1307 |  | 
| 1233 1308 | 
             
            MiniD: # Legacy
         | 
| 1234 1309 | 
             
              searchable: false
         | 
| 1235 | 
            -
               | 
| 1310 | 
            +
              extensions:
         | 
| 1311 | 
            +
              - .minid # Dummy extension
         | 
| 1236 1312 |  | 
| 1237 1313 | 
             
            Mirah:
         | 
| 1238 1314 | 
             
              type: programming
         | 
| 1239 1315 | 
             
              lexer: Ruby
         | 
| 1240 1316 | 
             
              search_term: ruby
         | 
| 1241 1317 | 
             
              color: "#c7a938"
         | 
| 1242 | 
            -
              primary_extension: .druby
         | 
| 1243 1318 | 
             
              extensions:
         | 
| 1319 | 
            +
              - .druby
         | 
| 1244 1320 | 
             
              - .duby
         | 
| 1245 1321 | 
             
              - .mir
         | 
| 1246 1322 | 
             
              - .mirah
         | 
| @@ -1248,44 +1324,52 @@ Mirah: | |
| 1248 1324 | 
             
            Monkey:
         | 
| 1249 1325 | 
             
              type: programming
         | 
| 1250 1326 | 
             
              lexer: Monkey
         | 
| 1251 | 
            -
               | 
| 1327 | 
            +
              extensions:
         | 
| 1328 | 
            +
              - .monkey
         | 
| 1252 1329 |  | 
| 1253 1330 | 
             
            Moocode:
         | 
| 1254 1331 | 
             
              type: programming
         | 
| 1255 1332 | 
             
              lexer: MOOCode
         | 
| 1256 | 
            -
               | 
| 1333 | 
            +
              extensions:
         | 
| 1334 | 
            +
              - .moo
         | 
| 1257 1335 |  | 
| 1258 1336 | 
             
            MoonScript:
         | 
| 1259 1337 | 
             
              type: programming
         | 
| 1260 | 
            -
               | 
| 1338 | 
            +
              extensions:
         | 
| 1339 | 
            +
              - .moon
         | 
| 1261 1340 |  | 
| 1262 1341 | 
             
            Myghty:
         | 
| 1263 | 
            -
               | 
| 1342 | 
            +
              extensions:
         | 
| 1343 | 
            +
              - .myt
         | 
| 1264 1344 |  | 
| 1265 1345 | 
             
            NSIS:
         | 
| 1266 | 
            -
               | 
| 1346 | 
            +
              extensions:
         | 
| 1347 | 
            +
              - .nsi
         | 
| 1267 1348 |  | 
| 1268 1349 | 
             
            Nemerle:
         | 
| 1269 1350 | 
             
              type: programming
         | 
| 1270 1351 | 
             
              color: "#0d3c6e"
         | 
| 1271 | 
            -
               | 
| 1352 | 
            +
              extensions:
         | 
| 1353 | 
            +
              - .n
         | 
| 1272 1354 |  | 
| 1273 1355 | 
             
            NetLogo:
         | 
| 1274 1356 | 
             
              type: programming
         | 
| 1275 1357 | 
             
              lexer: Common Lisp
         | 
| 1276 1358 | 
             
              color: "#ff2b2b"
         | 
| 1277 | 
            -
               | 
| 1359 | 
            +
              extensions:
         | 
| 1360 | 
            +
              - .nlogo
         | 
| 1278 1361 |  | 
| 1279 1362 | 
             
            Nginx:
         | 
| 1280 1363 | 
             
              type: markup
         | 
| 1281 1364 | 
             
              lexer: Nginx configuration file
         | 
| 1282 | 
            -
               | 
| 1365 | 
            +
              extensions:
         | 
| 1366 | 
            +
              - .nginxconf
         | 
| 1283 1367 |  | 
| 1284 1368 | 
             
            Nimrod:
         | 
| 1285 1369 | 
             
              type: programming
         | 
| 1286 1370 | 
             
              color: "#37775b"
         | 
| 1287 | 
            -
              primary_extension: .nim
         | 
| 1288 1371 | 
             
              extensions:
         | 
| 1372 | 
            +
              - .nim
         | 
| 1289 1373 | 
             
              - .nimrod
         | 
| 1290 1374 |  | 
| 1291 1375 | 
             
            Nu:
         | 
| @@ -1294,14 +1378,15 @@ Nu: | |
| 1294 1378 | 
             
              color: "#c9df40"
         | 
| 1295 1379 | 
             
              aliases:
         | 
| 1296 1380 | 
             
              - nush
         | 
| 1297 | 
            -
               | 
| 1381 | 
            +
              extensions:
         | 
| 1382 | 
            +
              - .nu
         | 
| 1298 1383 | 
             
              filenames:
         | 
| 1299 1384 | 
             
              - Nukefile
         | 
| 1300 1385 |  | 
| 1301 1386 | 
             
            NumPy:
         | 
| 1302 1387 | 
             
              group: Python
         | 
| 1303 | 
            -
              primary_extension: .numpy
         | 
| 1304 1388 | 
             
              extensions:
         | 
| 1389 | 
            +
              - .numpy
         | 
| 1305 1390 | 
             
              - .numpyw
         | 
| 1306 1391 | 
             
              - .numsc
         | 
| 1307 1392 |  | 
| @@ -1309,8 +1394,8 @@ OCaml: | |
| 1309 1394 | 
             
              type: programming
         | 
| 1310 1395 | 
             
              ace_mode: ocaml
         | 
| 1311 1396 | 
             
              color: "#3be133"
         | 
| 1312 | 
            -
              primary_extension: .ml
         | 
| 1313 1397 | 
             
              extensions:
         | 
| 1398 | 
            +
              - .ml
         | 
| 1314 1399 | 
             
              - .eliomi
         | 
| 1315 1400 | 
             
              - .ml4
         | 
| 1316 1401 | 
             
              - .mli
         | 
| @@ -1320,7 +1405,8 @@ OCaml: | |
| 1320 1405 | 
             
            ObjDump:
         | 
| 1321 1406 | 
             
              type: data
         | 
| 1322 1407 | 
             
              lexer: objdump
         | 
| 1323 | 
            -
               | 
| 1408 | 
            +
              extensions:
         | 
| 1409 | 
            +
              - .objdump
         | 
| 1324 1410 |  | 
| 1325 1411 | 
             
            Objective-C:
         | 
| 1326 1412 | 
             
              type: programming
         | 
| @@ -1328,7 +1414,8 @@ Objective-C: | |
| 1328 1414 | 
             
              aliases:
         | 
| 1329 1415 | 
             
              - obj-c
         | 
| 1330 1416 | 
             
              - objc
         | 
| 1331 | 
            -
               | 
| 1417 | 
            +
              extensions:
         | 
| 1418 | 
            +
              - .m
         | 
| 1332 1419 |  | 
| 1333 1420 | 
             
            Objective-C++:
         | 
| 1334 1421 | 
             
              type: programming
         | 
| @@ -1336,33 +1423,36 @@ Objective-C++: | |
| 1336 1423 | 
             
              aliases:
         | 
| 1337 1424 | 
             
              - obj-c++
         | 
| 1338 1425 | 
             
              - objc++
         | 
| 1339 | 
            -
               | 
| 1426 | 
            +
              extensions:
         | 
| 1427 | 
            +
              - .mm
         | 
| 1340 1428 |  | 
| 1341 1429 | 
             
            Objective-J:
         | 
| 1342 1430 | 
             
              type: programming
         | 
| 1343 1431 | 
             
              color: "#ff0c5a"
         | 
| 1344 1432 | 
             
              aliases:
         | 
| 1345 1433 | 
             
              - obj-j
         | 
| 1346 | 
            -
              primary_extension: .j
         | 
| 1347 1434 | 
             
              extensions:
         | 
| 1435 | 
            +
              - .j
         | 
| 1348 1436 | 
             
              - .sj
         | 
| 1349 1437 |  | 
| 1350 1438 | 
             
            Omgrofl:
         | 
| 1351 1439 | 
             
              type: programming
         | 
| 1352 | 
            -
               | 
| 1440 | 
            +
              extensions:
         | 
| 1441 | 
            +
              - .omgrofl
         | 
| 1353 1442 | 
             
              color: "#cabbff"
         | 
| 1354 1443 | 
             
              lexer: Text only
         | 
| 1355 1444 |  | 
| 1356 1445 | 
             
            Opa:
         | 
| 1357 1446 | 
             
              type: programming
         | 
| 1358 | 
            -
               | 
| 1447 | 
            +
              extensions:
         | 
| 1448 | 
            +
              - .opa
         | 
| 1359 1449 |  | 
| 1360 1450 | 
             
            OpenCL:
         | 
| 1361 1451 | 
             
              type: programming
         | 
| 1362 1452 | 
             
              group: C
         | 
| 1363 1453 | 
             
              lexer: C
         | 
| 1364 | 
            -
              primary_extension: .cl
         | 
| 1365 1454 | 
             
              extensions:
         | 
| 1455 | 
            +
              - .cl
         | 
| 1366 1456 | 
             
              - .opencl
         | 
| 1367 1457 |  | 
| 1368 1458 | 
             
            OpenEdge ABL:
         | 
| @@ -1371,32 +1461,36 @@ OpenEdge ABL: | |
| 1371 1461 | 
             
              - progress
         | 
| 1372 1462 | 
             
              - openedge
         | 
| 1373 1463 | 
             
              - abl
         | 
| 1374 | 
            -
               | 
| 1464 | 
            +
              extensions:
         | 
| 1465 | 
            +
              - .p
         | 
| 1375 1466 |  | 
| 1376 1467 | 
             
            Org:
         | 
| 1377 1468 | 
             
              type: prose
         | 
| 1378 1469 | 
             
              lexer: Text only
         | 
| 1379 1470 | 
             
              wrap: true
         | 
| 1380 | 
            -
               | 
| 1471 | 
            +
              extensions:
         | 
| 1472 | 
            +
              - .org
         | 
| 1381 1473 |  | 
| 1382 1474 | 
             
            Oxygene:
         | 
| 1383 1475 | 
             
              type: programming
         | 
| 1384 1476 | 
             
              lexer: Text only
         | 
| 1385 1477 | 
             
              color: "#5a63a3"
         | 
| 1386 | 
            -
               | 
| 1478 | 
            +
              extensions:
         | 
| 1479 | 
            +
              - .oxygene
         | 
| 1387 1480 |  | 
| 1388 1481 | 
             
            PAWN:
         | 
| 1389 1482 | 
             
              type: programming
         | 
| 1390 1483 | 
             
              lexer: C++
         | 
| 1391 1484 | 
             
              color: "#dbb284"
         | 
| 1392 | 
            -
               | 
| 1485 | 
            +
              extensions:
         | 
| 1486 | 
            +
              - .pwn
         | 
| 1393 1487 |  | 
| 1394 1488 | 
             
            PHP:
         | 
| 1395 1489 | 
             
              type: programming
         | 
| 1396 1490 | 
             
              ace_mode: php
         | 
| 1397 | 
            -
              color: "# | 
| 1398 | 
            -
              primary_extension: .php
         | 
| 1491 | 
            +
              color: "#4F5D95"
         | 
| 1399 1492 | 
             
              extensions:
         | 
| 1493 | 
            +
              - .php
         | 
| 1400 1494 | 
             
              - .aw
         | 
| 1401 1495 | 
             
              - .ctp
         | 
| 1402 1496 | 
             
              - .php3
         | 
| @@ -1410,7 +1504,8 @@ Parrot: | |
| 1410 1504 | 
             
              type: programming
         | 
| 1411 1505 | 
             
              color: "#f3ca0a"
         | 
| 1412 1506 | 
             
              lexer: Text only
         | 
| 1413 | 
            -
               | 
| 1507 | 
            +
              extensions:
         | 
| 1508 | 
            +
              - .parrot # Dummy extension
         | 
| 1414 1509 |  | 
| 1415 1510 | 
             
            Parrot Internal Representation:
         | 
| 1416 1511 | 
             
              group: Parrot
         | 
| @@ -1418,7 +1513,8 @@ Parrot Internal Representation: | |
| 1418 1513 | 
             
              lexer: Text only
         | 
| 1419 1514 | 
             
              aliases:
         | 
| 1420 1515 | 
             
              - pir
         | 
| 1421 | 
            -
               | 
| 1516 | 
            +
              extensions:
         | 
| 1517 | 
            +
              - .pir
         | 
| 1422 1518 |  | 
| 1423 1519 | 
             
            Parrot Assembly:
         | 
| 1424 1520 | 
             
              group: Parrot
         | 
| @@ -1426,14 +1522,15 @@ Parrot Assembly: | |
| 1426 1522 | 
             
              lexer: Text only
         | 
| 1427 1523 | 
             
              aliases:
         | 
| 1428 1524 | 
             
              - pasm
         | 
| 1429 | 
            -
               | 
| 1525 | 
            +
              extensions:
         | 
| 1526 | 
            +
              - .pasm
         | 
| 1430 1527 |  | 
| 1431 1528 | 
             
            Pascal:
         | 
| 1432 1529 | 
             
              type: programming
         | 
| 1433 1530 | 
             
              lexer: Delphi
         | 
| 1434 1531 | 
             
              color: "#b0ce4e"
         | 
| 1435 | 
            -
              primary_extension: .pas
         | 
| 1436 1532 | 
             
              extensions:
         | 
| 1533 | 
            +
              - .pas
         | 
| 1437 1534 | 
             
              - .dfm
         | 
| 1438 1535 | 
             
              - .lpr
         | 
| 1439 1536 |  | 
| @@ -1441,8 +1538,8 @@ Perl: | |
| 1441 1538 | 
             
              type: programming
         | 
| 1442 1539 | 
             
              ace_mode: perl
         | 
| 1443 1540 | 
             
              color: "#0298c3"
         | 
| 1444 | 
            -
              primary_extension: .pl
         | 
| 1445 1541 | 
             
              extensions:
         | 
| 1542 | 
            +
              - .pl
         | 
| 1446 1543 | 
             
              - .PL
         | 
| 1447 1544 | 
             
              - .perl
         | 
| 1448 1545 | 
             
              - .ph
         | 
| @@ -1456,8 +1553,8 @@ Perl: | |
| 1456 1553 | 
             
            Perl6:
         | 
| 1457 1554 | 
             
              type: programming
         | 
| 1458 1555 | 
             
              color: "#0298c3"
         | 
| 1459 | 
            -
              primary_extension: .p6
         | 
| 1460 1556 | 
             
              extensions:
         | 
| 1557 | 
            +
              - .p6
         | 
| 1461 1558 | 
             
              - .6pl
         | 
| 1462 1559 | 
             
              - .6pm
         | 
| 1463 1560 | 
             
              - .nqp
         | 
| @@ -1470,8 +1567,8 @@ Pike: | |
| 1470 1567 | 
             
              type: programming
         | 
| 1471 1568 | 
             
              color: "#066ab2"
         | 
| 1472 1569 | 
             
              lexer: C
         | 
| 1473 | 
            -
              primary_extension: .pike
         | 
| 1474 1570 | 
             
              extensions:
         | 
| 1571 | 
            +
              - .pike
         | 
| 1475 1572 | 
             
              - .pmod
         | 
| 1476 1573 |  | 
| 1477 1574 | 
             
            Pod:
         | 
| @@ -1479,18 +1576,20 @@ Pod: | |
| 1479 1576 | 
             
              lexer: Text only
         | 
| 1480 1577 | 
             
              ace_mode: perl
         | 
| 1481 1578 | 
             
              wrap: true
         | 
| 1482 | 
            -
               | 
| 1579 | 
            +
              extensions:
         | 
| 1580 | 
            +
              - .pod
         | 
| 1483 1581 |  | 
| 1484 1582 | 
             
            PogoScript:
         | 
| 1485 1583 | 
             
              type: programming
         | 
| 1486 1584 | 
             
              color: "#d80074"
         | 
| 1487 1585 | 
             
              lexer: Text only
         | 
| 1488 | 
            -
               | 
| 1586 | 
            +
              extensions:
         | 
| 1587 | 
            +
              - .pogo
         | 
| 1489 1588 |  | 
| 1490 1589 | 
             
            PostScript:
         | 
| 1491 1590 | 
             
              type: markup
         | 
| 1492 | 
            -
              primary_extension: .ps
         | 
| 1493 1591 | 
             
              extensions:
         | 
| 1592 | 
            +
              - .ps
         | 
| 1494 1593 | 
             
              - .eps
         | 
| 1495 1594 |  | 
| 1496 1595 | 
             
            PowerShell:
         | 
| @@ -1498,8 +1597,8 @@ PowerShell: | |
| 1498 1597 | 
             
              ace_mode: powershell
         | 
| 1499 1598 | 
             
              aliases:
         | 
| 1500 1599 | 
             
              - posh
         | 
| 1501 | 
            -
              primary_extension: .ps1
         | 
| 1502 1600 | 
             
              extensions:
         | 
| 1601 | 
            +
              - .ps1
         | 
| 1503 1602 | 
             
              - .psd1
         | 
| 1504 1603 | 
             
              - .psm1
         | 
| 1505 1604 |  | 
| @@ -1507,27 +1606,35 @@ Processing: | |
| 1507 1606 | 
             
              type: programming
         | 
| 1508 1607 | 
             
              lexer: Java
         | 
| 1509 1608 | 
             
              color: "#2779ab"
         | 
| 1510 | 
            -
               | 
| 1609 | 
            +
              extensions:
         | 
| 1610 | 
            +
              - .pde
         | 
| 1511 1611 |  | 
| 1512 1612 | 
             
            Prolog:
         | 
| 1513 1613 | 
             
              type: programming
         | 
| 1514 1614 | 
             
              color: "#74283c"
         | 
| 1515 | 
            -
              primary_extension: .prolog
         | 
| 1516 1615 | 
             
              extensions:
         | 
| 1616 | 
            +
              - .prolog
         | 
| 1517 1617 | 
             
              - .ecl
         | 
| 1518 1618 | 
             
              - .pl
         | 
| 1519 1619 |  | 
| 1620 | 
            +
            Propeller Spin:
         | 
| 1621 | 
            +
              type: programming
         | 
| 1622 | 
            +
              lexer: Text only
         | 
| 1623 | 
            +
              color: "#2b446d"
         | 
| 1624 | 
            +
              extensions:
         | 
| 1625 | 
            +
              - .spin
         | 
| 1626 | 
            +
             | 
| 1520 1627 | 
             
            Protocol Buffer:
         | 
| 1521 1628 | 
             
              type: markup
         | 
| 1522 1629 | 
             
              aliases:
         | 
| 1523 1630 | 
             
              - protobuf
         | 
| 1524 1631 | 
             
              - Protocol Buffers
         | 
| 1525 | 
            -
               | 
| 1632 | 
            +
              extensions:
         | 
| 1633 | 
            +
              - .proto
         | 
| 1526 1634 |  | 
| 1527 1635 | 
             
            Puppet:
         | 
| 1528 1636 | 
             
              type: programming
         | 
| 1529 1637 | 
             
              color: "#cc5555"
         | 
| 1530 | 
            -
              primary_extension: .pp
         | 
| 1531 1638 | 
             
              extensions:
         | 
| 1532 1639 | 
             
              - .pp
         | 
| 1533 1640 | 
             
              filenames:
         | 
| @@ -1537,22 +1644,25 @@ Pure Data: | |
| 1537 1644 | 
             
              type: programming
         | 
| 1538 1645 | 
             
              color: "#91de79"
         | 
| 1539 1646 | 
             
              lexer: Text only
         | 
| 1540 | 
            -
               | 
| 1647 | 
            +
              extensions:
         | 
| 1648 | 
            +
              - .pd
         | 
| 1541 1649 |  | 
| 1542 1650 | 
             
            PureScript:
         | 
| 1543 1651 | 
             
              type: programming
         | 
| 1544 1652 | 
             
              color: "#bcdc53"
         | 
| 1545 1653 | 
             
              lexer: Haskell
         | 
| 1546 | 
            -
               | 
| 1654 | 
            +
              extensions:
         | 
| 1655 | 
            +
              - .purs
         | 
| 1547 1656 |  | 
| 1548 1657 | 
             
            Python:
         | 
| 1549 1658 | 
             
              type: programming
         | 
| 1550 1659 | 
             
              ace_mode: python
         | 
| 1551 1660 | 
             
              color: "#3581ba"
         | 
| 1552 | 
            -
              primary_extension: .py
         | 
| 1553 1661 | 
             
              extensions:
         | 
| 1662 | 
            +
              - .py
         | 
| 1554 1663 | 
             
              - .gyp
         | 
| 1555 1664 | 
             
              - .lmi
         | 
| 1665 | 
            +
              - .pyde
         | 
| 1556 1666 | 
             
              - .pyt
         | 
| 1557 1667 | 
             
              - .pyw
         | 
| 1558 1668 | 
             
              - .wsgi
         | 
| @@ -1569,12 +1679,14 @@ Python traceback: | |
| 1569 1679 | 
             
              group: Python
         | 
| 1570 1680 | 
             
              lexer: Python Traceback
         | 
| 1571 1681 | 
             
              searchable: false
         | 
| 1572 | 
            -
               | 
| 1682 | 
            +
              extensions:
         | 
| 1683 | 
            +
              - .pytb
         | 
| 1573 1684 |  | 
| 1574 1685 | 
             
            QML:
         | 
| 1575 1686 | 
             
              type: markup
         | 
| 1576 1687 | 
             
              color: "#44a51c"
         | 
| 1577 | 
            -
               | 
| 1688 | 
            +
              extensions:
         | 
| 1689 | 
            +
              - .qml
         | 
| 1578 1690 |  | 
| 1579 1691 | 
             
            R:
         | 
| 1580 1692 | 
             
              type: programming
         | 
| @@ -1582,8 +1694,9 @@ R: | |
| 1582 1694 | 
             
              lexer: S
         | 
| 1583 1695 | 
             
              aliases:
         | 
| 1584 1696 | 
             
              - R
         | 
| 1585 | 
            -
               | 
| 1697 | 
            +
              - Rscript
         | 
| 1586 1698 | 
             
              extensions:
         | 
| 1699 | 
            +
              - .r
         | 
| 1587 1700 | 
             
              - .R
         | 
| 1588 1701 | 
             
              - .rsx
         | 
| 1589 1702 | 
             
              filenames:
         | 
| @@ -1596,13 +1709,14 @@ RDoc: | |
| 1596 1709 | 
             
              lexer: Text only
         | 
| 1597 1710 | 
             
              ace_mode: rdoc
         | 
| 1598 1711 | 
             
              wrap: true
         | 
| 1599 | 
            -
               | 
| 1712 | 
            +
              extensions:
         | 
| 1713 | 
            +
              - .rdoc
         | 
| 1600 1714 |  | 
| 1601 1715 | 
             
            REALbasic:
         | 
| 1602 1716 | 
             
              type: programming
         | 
| 1603 1717 | 
             
              lexer: VB.net
         | 
| 1604 | 
            -
              primary_extension: .rbbas
         | 
| 1605 1718 | 
             
              extensions:
         | 
| 1719 | 
            +
              - .rbbas
         | 
| 1606 1720 | 
             
              - .rbfrm
         | 
| 1607 1721 | 
             
              - .rbmnu
         | 
| 1608 1722 | 
             
              - .rbres
         | 
| @@ -1612,23 +1726,24 @@ REALbasic: | |
| 1612 1726 | 
             
            RHTML:
         | 
| 1613 1727 | 
             
              type: markup
         | 
| 1614 1728 | 
             
              group: HTML
         | 
| 1615 | 
            -
               | 
| 1729 | 
            +
              extensions:
         | 
| 1730 | 
            +
              - .rhtml
         | 
| 1616 1731 |  | 
| 1617 1732 | 
             
            RMarkdown:
         | 
| 1618 1733 | 
             
              type: prose
         | 
| 1619 1734 | 
             
              lexer: Text only
         | 
| 1620 1735 | 
             
              wrap: true
         | 
| 1621 1736 | 
             
              ace_mode: markdown
         | 
| 1622 | 
            -
              primary_extension: .rmd
         | 
| 1623 1737 | 
             
              extensions:
         | 
| 1738 | 
            +
              - .rmd
         | 
| 1624 1739 | 
             
              - .Rmd
         | 
| 1625 1740 |  | 
| 1626 1741 | 
             
            Racket:
         | 
| 1627 1742 | 
             
              type: programming
         | 
| 1628 1743 | 
             
              lexer: Racket
         | 
| 1629 1744 | 
             
              color: "#ae17ff"
         | 
| 1630 | 
            -
              primary_extension: .rkt
         | 
| 1631 1745 | 
             
              extensions:
         | 
| 1746 | 
            +
              - .rkt
         | 
| 1632 1747 | 
             
              - .rktd
         | 
| 1633 1748 | 
             
              - .rktl
         | 
| 1634 1749 |  | 
| @@ -1636,32 +1751,43 @@ Ragel in Ruby Host: | |
| 1636 1751 | 
             
              type: programming
         | 
| 1637 1752 | 
             
              lexer: Ragel in Ruby Host
         | 
| 1638 1753 | 
             
              color: "#ff9c2e"
         | 
| 1639 | 
            -
               | 
| 1754 | 
            +
              extensions:
         | 
| 1755 | 
            +
              - .rl
         | 
| 1640 1756 |  | 
| 1641 1757 | 
             
            Raw token data:
         | 
| 1642 1758 | 
             
              search_term: raw
         | 
| 1643 1759 | 
             
              aliases:
         | 
| 1644 1760 | 
             
              - raw
         | 
| 1645 | 
            -
               | 
| 1761 | 
            +
              extensions:
         | 
| 1762 | 
            +
              - .raw
         | 
| 1646 1763 |  | 
| 1647 1764 | 
             
            Rebol:
         | 
| 1648 1765 | 
             
              type: programming
         | 
| 1649 1766 | 
             
              lexer: REBOL
         | 
| 1650 1767 | 
             
              color: "#358a5b"
         | 
| 1651 | 
            -
              primary_extension: .reb
         | 
| 1652 1768 | 
             
              extensions:
         | 
| 1769 | 
            +
              - .reb
         | 
| 1653 1770 | 
             
              - .r
         | 
| 1654 1771 | 
             
              - .r2
         | 
| 1655 1772 | 
             
              - .r3
         | 
| 1656 1773 | 
             
              - .rebol
         | 
| 1657 1774 |  | 
| 1775 | 
            +
            Red:
         | 
| 1776 | 
            +
              type: programming
         | 
| 1777 | 
            +
              lexer: Text only
         | 
| 1778 | 
            +
              color: "#ee0000"
         | 
| 1779 | 
            +
              extensions:
         | 
| 1780 | 
            +
              - .red
         | 
| 1781 | 
            +
              - .reds
         | 
| 1782 | 
            +
              
         | 
| 1658 1783 | 
             
            Redcode:
         | 
| 1659 | 
            -
               | 
| 1784 | 
            +
              extensions:
         | 
| 1785 | 
            +
              - .cw
         | 
| 1660 1786 |  | 
| 1661 1787 | 
             
            RobotFramework:
         | 
| 1662 1788 | 
             
              type: programming
         | 
| 1663 | 
            -
               | 
| 1664 | 
            -
               | 
| 1789 | 
            +
              extensions:
         | 
| 1790 | 
            +
              - .robot
         | 
| 1665 1791 | 
             
              # - .txt
         | 
| 1666 1792 |  | 
| 1667 1793 | 
             
            Rouge:
         | 
| @@ -1669,7 +1795,8 @@ Rouge: | |
| 1669 1795 | 
             
              lexer: Clojure
         | 
| 1670 1796 | 
             
              ace_mode: clojure
         | 
| 1671 1797 | 
             
              color: "#cc0088"
         | 
| 1672 | 
            -
               | 
| 1798 | 
            +
              extensions:
         | 
| 1799 | 
            +
              - .rg
         | 
| 1673 1800 |  | 
| 1674 1801 | 
             
            Ruby:
         | 
| 1675 1802 | 
             
              type: programming
         | 
| @@ -1681,8 +1808,8 @@ Ruby: | |
| 1681 1808 | 
             
              - rake
         | 
| 1682 1809 | 
             
              - rb
         | 
| 1683 1810 | 
             
              - rbx
         | 
| 1684 | 
            -
              primary_extension: .rb
         | 
| 1685 1811 | 
             
              extensions:
         | 
| 1812 | 
            +
              - .rb
         | 
| 1686 1813 | 
             
              - .builder
         | 
| 1687 1814 | 
             
              - .gemspec
         | 
| 1688 1815 | 
             
              - .god
         | 
| @@ -1712,20 +1839,21 @@ Ruby: | |
| 1712 1839 | 
             
            Rust:
         | 
| 1713 1840 | 
             
              type: programming
         | 
| 1714 1841 | 
             
              color: "#dea584"
         | 
| 1715 | 
            -
               | 
| 1842 | 
            +
              extensions:
         | 
| 1843 | 
            +
              - .rs
         | 
| 1716 1844 |  | 
| 1717 1845 | 
             
            SCSS:
         | 
| 1718 1846 | 
             
              type: markup
         | 
| 1719 1847 | 
             
              group: CSS
         | 
| 1720 1848 | 
             
              ace_mode: scss
         | 
| 1721 | 
            -
               | 
| 1849 | 
            +
              extensions:
         | 
| 1850 | 
            +
              - .scss
         | 
| 1722 1851 |  | 
| 1723 1852 | 
             
            SQL:
         | 
| 1724 | 
            -
              type:  | 
| 1853 | 
            +
              type: programming
         | 
| 1725 1854 | 
             
              ace_mode: sql
         | 
| 1726 | 
            -
              searchable: false
         | 
| 1727 | 
            -
              primary_extension: .sql
         | 
| 1728 1855 | 
             
              extensions:
         | 
| 1856 | 
            +
              - .sql
         | 
| 1729 1857 | 
             
              - .prc
         | 
| 1730 1858 | 
             
              - .tab
         | 
| 1731 1859 | 
             
              - .udf
         | 
| @@ -1735,31 +1863,34 @@ Sage: | |
| 1735 1863 | 
             
              type: programming
         | 
| 1736 1864 | 
             
              lexer: Python
         | 
| 1737 1865 | 
             
              group: Python
         | 
| 1738 | 
            -
               | 
| 1866 | 
            +
              extensions:
         | 
| 1867 | 
            +
              - .sage
         | 
| 1739 1868 |  | 
| 1740 1869 | 
             
            Sass:
         | 
| 1741 1870 | 
             
              type: markup
         | 
| 1742 1871 | 
             
              group: CSS
         | 
| 1743 | 
            -
               | 
| 1872 | 
            +
              extensions:
         | 
| 1873 | 
            +
              - .sass
         | 
| 1744 1874 |  | 
| 1745 1875 | 
             
            Scala:
         | 
| 1746 1876 | 
             
              type: programming
         | 
| 1747 1877 | 
             
              ace_mode: scala
         | 
| 1748 1878 | 
             
              color: "#7dd3b0"
         | 
| 1749 | 
            -
              primary_extension: .scala
         | 
| 1750 1879 | 
             
              extensions:
         | 
| 1880 | 
            +
              - .scala
         | 
| 1751 1881 | 
             
              - .sc
         | 
| 1752 1882 |  | 
| 1753 1883 | 
             
            Scaml:
         | 
| 1754 1884 | 
             
              group: HTML
         | 
| 1755 1885 | 
             
              type: markup
         | 
| 1756 | 
            -
               | 
| 1886 | 
            +
              extensions:
         | 
| 1887 | 
            +
              - .scaml
         | 
| 1757 1888 |  | 
| 1758 1889 | 
             
            Scheme:
         | 
| 1759 1890 | 
             
              type: programming
         | 
| 1760 1891 | 
             
              color: "#1e4aec"
         | 
| 1761 | 
            -
              primary_extension: .scm
         | 
| 1762 1892 | 
             
              extensions:
         | 
| 1893 | 
            +
              - .scm
         | 
| 1763 1894 | 
             
              - .sld
         | 
| 1764 1895 | 
             
              - .sls
         | 
| 1765 1896 | 
             
              - .ss
         | 
| @@ -1771,13 +1902,15 @@ Scheme: | |
| 1771 1902 |  | 
| 1772 1903 | 
             
            Scilab:
         | 
| 1773 1904 | 
             
              type: programming
         | 
| 1774 | 
            -
               | 
| 1905 | 
            +
              extensions:
         | 
| 1906 | 
            +
              - .sci
         | 
| 1775 1907 |  | 
| 1776 1908 | 
             
            Self:
         | 
| 1777 1909 | 
             
              type: programming
         | 
| 1778 1910 | 
             
              color: "#0579aa"
         | 
| 1779 1911 | 
             
              lexer: Text only
         | 
| 1780 | 
            -
               | 
| 1912 | 
            +
              extensions:
         | 
| 1913 | 
            +
              - .self
         | 
| 1781 1914 |  | 
| 1782 1915 | 
             
            Shell:
         | 
| 1783 1916 | 
             
              type: programming
         | 
| @@ -1788,8 +1921,8 @@ Shell: | |
| 1788 1921 | 
             
              - sh
         | 
| 1789 1922 | 
             
              - bash
         | 
| 1790 1923 | 
             
              - zsh
         | 
| 1791 | 
            -
              primary_extension: .sh
         | 
| 1792 1924 | 
             
              extensions:
         | 
| 1925 | 
            +
              - .sh
         | 
| 1793 1926 | 
             
              - .bats
         | 
| 1794 1927 | 
             
              - .tmux
         | 
| 1795 1928 | 
             
              interpreters:
         | 
| @@ -1802,104 +1935,114 @@ Shell: | |
| 1802 1935 | 
             
            ShellSession:
         | 
| 1803 1936 | 
             
              type: programming
         | 
| 1804 1937 | 
             
              lexer: Bash Session
         | 
| 1805 | 
            -
               | 
| 1938 | 
            +
              extensions:
         | 
| 1939 | 
            +
              - .sh-session
         | 
| 1806 1940 |  | 
| 1807 1941 | 
             
            Shen:
         | 
| 1808 1942 | 
             
              type: programming
         | 
| 1809 1943 | 
             
              color: "#120F14"
         | 
| 1810 1944 | 
             
              lexer: Text only
         | 
| 1811 | 
            -
               | 
| 1945 | 
            +
              extensions:
         | 
| 1946 | 
            +
              - .shen
         | 
| 1812 1947 |  | 
| 1813 1948 | 
             
            Slash:
         | 
| 1814 1949 | 
             
              type: programming
         | 
| 1815 1950 | 
             
              color: "#007eff"
         | 
| 1816 | 
            -
               | 
| 1951 | 
            +
              extensions:
         | 
| 1952 | 
            +
              - .sl
         | 
| 1817 1953 |  | 
| 1818 1954 | 
             
            Smalltalk:
         | 
| 1819 1955 | 
             
              type: programming
         | 
| 1820 1956 | 
             
              color: "#596706"
         | 
| 1821 | 
            -
               | 
| 1957 | 
            +
              extensions:
         | 
| 1958 | 
            +
              - .st
         | 
| 1822 1959 |  | 
| 1823 1960 | 
             
            Smarty:
         | 
| 1824 | 
            -
               | 
| 1961 | 
            +
              extensions:
         | 
| 1962 | 
            +
              - .tpl
         | 
| 1825 1963 |  | 
| 1826 1964 | 
             
            SourcePawn:
         | 
| 1827 1965 | 
             
              type: programming
         | 
| 1828 1966 | 
             
              color: "#f69e1d"
         | 
| 1829 1967 | 
             
              aliases:
         | 
| 1830 1968 | 
             
              - sourcemod
         | 
| 1831 | 
            -
               | 
| 1969 | 
            +
              extensions:
         | 
| 1970 | 
            +
              - .sp
         | 
| 1832 1971 |  | 
| 1833 1972 | 
             
            Squirrel:
         | 
| 1834 1973 | 
             
              type: programming
         | 
| 1835 1974 | 
             
              lexer: C++
         | 
| 1836 | 
            -
               | 
| 1975 | 
            +
              extensions:
         | 
| 1976 | 
            +
              - .nut
         | 
| 1837 1977 |  | 
| 1838 1978 | 
             
            Standard ML:
         | 
| 1839 1979 | 
             
              type: programming
         | 
| 1840 1980 | 
             
              color: "#dc566d"
         | 
| 1841 1981 | 
             
              aliases:
         | 
| 1842 1982 | 
             
              - sml
         | 
| 1843 | 
            -
              primary_extension: .sml
         | 
| 1844 1983 | 
             
              extensions:
         | 
| 1984 | 
            +
              - .sml
         | 
| 1845 1985 | 
             
              - .fun
         | 
| 1846 1986 |  | 
| 1847 1987 | 
             
            Stata:
         | 
| 1848 1988 | 
             
              type: programming
         | 
| 1849 1989 | 
             
              lexer: Text only
         | 
| 1850 1990 | 
             
              extensions:
         | 
| 1851 | 
            -
              - .ado
         | 
| 1852 1991 | 
             
              - .do
         | 
| 1992 | 
            +
              - .ado
         | 
| 1853 1993 | 
             
              - .doh
         | 
| 1854 1994 | 
             
              - .ihlp
         | 
| 1855 1995 | 
             
              - .mata
         | 
| 1856 1996 | 
             
              - .matah
         | 
| 1857 1997 | 
             
              - .sthlp
         | 
| 1858 | 
            -
              primary_extension: .do
         | 
| 1859 1998 |  | 
| 1860 1999 | 
             
            Stylus:
         | 
| 1861 2000 | 
             
              type: markup
         | 
| 1862 2001 | 
             
              group: CSS
         | 
| 1863 2002 | 
             
              lexer: Text only
         | 
| 1864 | 
            -
               | 
| 2003 | 
            +
              extensions:
         | 
| 2004 | 
            +
              - .styl
         | 
| 1865 2005 |  | 
| 1866 2006 | 
             
            SuperCollider:
         | 
| 1867 2007 | 
             
              type: programming
         | 
| 1868 2008 | 
             
              color: "#46390b"
         | 
| 1869 2009 | 
             
              lexer: Text only
         | 
| 1870 | 
            -
               | 
| 2010 | 
            +
              extensions:
         | 
| 2011 | 
            +
              - .scd
         | 
| 1871 2012 |  | 
| 1872 2013 | 
             
            SystemVerilog:
         | 
| 1873 2014 | 
             
              type: programming
         | 
| 1874 2015 | 
             
              color: "#343761"
         | 
| 1875 2016 | 
             
              lexer: systemverilog
         | 
| 1876 | 
            -
              primary_extension: .sv
         | 
| 1877 2017 | 
             
              extensions:
         | 
| 2018 | 
            +
              - .sv
         | 
| 1878 2019 | 
             
              - .svh
         | 
| 1879 2020 | 
             
              - .vh
         | 
| 1880 2021 |  | 
| 1881 2022 | 
             
            TOML:
         | 
| 1882 2023 | 
             
              type: data
         | 
| 1883 | 
            -
               | 
| 2024 | 
            +
              extensions:
         | 
| 2025 | 
            +
              - .toml
         | 
| 1884 2026 |  | 
| 1885 2027 | 
             
            TXL:
         | 
| 1886 2028 | 
             
              type: programming
         | 
| 1887 2029 | 
             
              lexer: Text only
         | 
| 1888 | 
            -
               | 
| 2030 | 
            +
              extensions:
         | 
| 2031 | 
            +
              - .txl
         | 
| 1889 2032 |  | 
| 1890 2033 | 
             
            Tcl:
         | 
| 1891 2034 | 
             
              type: programming
         | 
| 1892 2035 | 
             
              color: "#e4cc98"
         | 
| 1893 | 
            -
              primary_extension: .tcl
         | 
| 1894 2036 | 
             
              extensions:
         | 
| 2037 | 
            +
              - .tcl
         | 
| 1895 2038 | 
             
              - .adp
         | 
| 1896 2039 | 
             
              - .tm
         | 
| 1897 2040 |  | 
| 1898 2041 | 
             
            Tcsh:
         | 
| 1899 2042 | 
             
              type: programming
         | 
| 1900 2043 | 
             
              group: Shell
         | 
| 1901 | 
            -
              primary_extension: .tcsh
         | 
| 1902 2044 | 
             
              extensions:
         | 
| 2045 | 
            +
              - .tcsh
         | 
| 1903 2046 | 
             
              - .csh
         | 
| 1904 2047 |  | 
| 1905 2048 | 
             
            TeX:
         | 
| @@ -1909,8 +2052,8 @@ TeX: | |
| 1909 2052 | 
             
              wrap: true
         | 
| 1910 2053 | 
             
              aliases:
         | 
| 1911 2054 | 
             
              - latex
         | 
| 1912 | 
            -
              primary_extension: .tex
         | 
| 1913 2055 | 
             
              extensions:
         | 
| 2056 | 
            +
              - .tex
         | 
| 1914 2057 | 
             
              - .aux
         | 
| 1915 2058 | 
             
              - .bib
         | 
| 1916 2059 | 
             
              - .cls
         | 
| @@ -1925,35 +2068,39 @@ TeX: | |
| 1925 2068 |  | 
| 1926 2069 | 
             
            Tea:
         | 
| 1927 2070 | 
             
              type: markup
         | 
| 1928 | 
            -
               | 
| 2071 | 
            +
              extensions:
         | 
| 2072 | 
            +
              - .tea
         | 
| 1929 2073 |  | 
| 1930 2074 | 
             
            Textile:
         | 
| 1931 2075 | 
             
              type: prose
         | 
| 1932 2076 | 
             
              lexer: Text only
         | 
| 1933 2077 | 
             
              ace_mode: textile
         | 
| 1934 2078 | 
             
              wrap: true
         | 
| 1935 | 
            -
               | 
| 2079 | 
            +
              extensions:
         | 
| 2080 | 
            +
              - .textile
         | 
| 1936 2081 |  | 
| 1937 2082 | 
             
            Turing:
         | 
| 1938 2083 | 
             
              type: programming
         | 
| 1939 2084 | 
             
              color: "#45f715"
         | 
| 1940 2085 | 
             
              lexer: Text only
         | 
| 1941 | 
            -
              primary_extension: .t
         | 
| 1942 2086 | 
             
              extensions:
         | 
| 2087 | 
            +
              - .t
         | 
| 1943 2088 | 
             
              - .tu
         | 
| 1944 2089 |  | 
| 1945 2090 | 
             
            Twig:
         | 
| 1946 2091 | 
             
              type: markup
         | 
| 1947 2092 | 
             
              group: PHP
         | 
| 1948 2093 | 
             
              lexer: HTML+Django/Jinja
         | 
| 1949 | 
            -
               | 
| 2094 | 
            +
              extensions:
         | 
| 2095 | 
            +
              - .twig
         | 
| 1950 2096 |  | 
| 1951 2097 | 
             
            TypeScript:
         | 
| 1952 2098 | 
             
              type: programming
         | 
| 1953 2099 | 
             
              color: "#31859c"
         | 
| 1954 2100 | 
             
              aliases:
         | 
| 1955 2101 | 
             
              - ts
         | 
| 1956 | 
            -
               | 
| 2102 | 
            +
              extensions:
         | 
| 2103 | 
            +
              - .ts
         | 
| 1957 2104 |  | 
| 1958 2105 | 
             
            Unified Parallel C:
         | 
| 1959 2106 | 
             
              type: programming
         | 
| @@ -1961,20 +2108,22 @@ Unified Parallel C: | |
| 1961 2108 | 
             
              lexer: C
         | 
| 1962 2109 | 
             
              ace_mode: c_cpp
         | 
| 1963 2110 | 
             
              color: "#755223"
         | 
| 1964 | 
            -
               | 
| 2111 | 
            +
              extensions:
         | 
| 2112 | 
            +
              - .upc
         | 
| 1965 2113 |  | 
| 1966 2114 | 
             
            UnrealScript:
         | 
| 1967 2115 | 
             
              type: programming
         | 
| 1968 2116 | 
             
              color: "#a54c4d"
         | 
| 1969 2117 | 
             
              lexer: Java
         | 
| 1970 | 
            -
               | 
| 2118 | 
            +
              extensions:
         | 
| 2119 | 
            +
              - .uc
         | 
| 1971 2120 |  | 
| 1972 2121 | 
             
            VHDL:
         | 
| 1973 2122 | 
             
              type: programming
         | 
| 1974 2123 | 
             
              lexer: vhdl
         | 
| 1975 2124 | 
             
              color: "#543978"
         | 
| 1976 | 
            -
              primary_extension: .vhdl
         | 
| 1977 2125 | 
             
              extensions:
         | 
| 2126 | 
            +
              - .vhdl
         | 
| 1978 2127 | 
             
              - .vhd
         | 
| 1979 2128 | 
             
              - .vhf
         | 
| 1980 2129 | 
             
              - .vhi
         | 
| @@ -1986,16 +2135,16 @@ VHDL: | |
| 1986 2135 | 
             
            Vala:
         | 
| 1987 2136 | 
             
              type: programming
         | 
| 1988 2137 | 
             
              color: "#ee7d06"
         | 
| 1989 | 
            -
              primary_extension: .vala
         | 
| 1990 2138 | 
             
              extensions:
         | 
| 2139 | 
            +
              - .vala
         | 
| 1991 2140 | 
             
              - .vapi
         | 
| 1992 2141 |  | 
| 1993 2142 | 
             
            Verilog:
         | 
| 1994 2143 | 
             
              type: programming
         | 
| 1995 2144 | 
             
              lexer: verilog
         | 
| 1996 2145 | 
             
              color: "#848bf3"
         | 
| 1997 | 
            -
              primary_extension: .v
         | 
| 1998 2146 | 
             
              extensions:
         | 
| 2147 | 
            +
              - .v
         | 
| 1999 2148 | 
             
              - .veo
         | 
| 2000 2149 |  | 
| 2001 2150 | 
             
            VimL:
         | 
| @@ -2004,7 +2153,8 @@ VimL: | |
| 2004 2153 | 
             
              search_term: vim
         | 
| 2005 2154 | 
             
              aliases:
         | 
| 2006 2155 | 
             
              - vim
         | 
| 2007 | 
            -
               | 
| 2156 | 
            +
              extensions:
         | 
| 2157 | 
            +
              - .vim
         | 
| 2008 2158 | 
             
              filenames:
         | 
| 2009 2159 | 
             
              - .vimrc
         | 
| 2010 2160 | 
             
              - vimrc
         | 
| @@ -2014,8 +2164,8 @@ Visual Basic: | |
| 2014 2164 | 
             
              type: programming
         | 
| 2015 2165 | 
             
              lexer: VB.net
         | 
| 2016 2166 | 
             
              color: "#945db7"
         | 
| 2017 | 
            -
              primary_extension: .vb
         | 
| 2018 2167 | 
             
              extensions:
         | 
| 2168 | 
            +
              - .vb
         | 
| 2019 2169 | 
             
              - .bas
         | 
| 2020 2170 | 
             
              - .frm
         | 
| 2021 2171 | 
             
              - .frx
         | 
| @@ -2027,12 +2177,14 @@ Volt: | |
| 2027 2177 | 
             
                type: programming
         | 
| 2028 2178 | 
             
                lexer: D
         | 
| 2029 2179 | 
             
                color: "#0098db"
         | 
| 2030 | 
            -
                 | 
| 2180 | 
            +
                extensions:
         | 
| 2181 | 
            +
                - .volt
         | 
| 2031 2182 |  | 
| 2032 2183 | 
             
            XC:
         | 
| 2033 2184 | 
             
              type: programming
         | 
| 2034 2185 | 
             
              lexer: C
         | 
| 2035 | 
            -
               | 
| 2186 | 
            +
              extensions:
         | 
| 2187 | 
            +
              - .xc
         | 
| 2036 2188 |  | 
| 2037 2189 | 
             
            XML:
         | 
| 2038 2190 | 
             
              type: markup
         | 
| @@ -2041,21 +2193,25 @@ XML: | |
| 2041 2193 | 
             
              - rss
         | 
| 2042 2194 | 
             
              - xsd
         | 
| 2043 2195 | 
             
              - wsdl
         | 
| 2044 | 
            -
              primary_extension: .xml
         | 
| 2045 2196 | 
             
              extensions:
         | 
| 2197 | 
            +
              - .xml
         | 
| 2046 2198 | 
             
              - .axml
         | 
| 2047 2199 | 
             
              - .ccxml
         | 
| 2048 2200 | 
             
              - .clixml
         | 
| 2049 2201 | 
             
              - .cproject
         | 
| 2202 | 
            +
              - .csproj
         | 
| 2050 2203 | 
             
              - .dita
         | 
| 2051 2204 | 
             
              - .ditamap
         | 
| 2052 2205 | 
             
              - .ditaval
         | 
| 2206 | 
            +
              - .filters
         | 
| 2207 | 
            +
              - .fsproj
         | 
| 2053 2208 | 
             
              - .glade
         | 
| 2054 2209 | 
             
              - .grxml
         | 
| 2055 2210 | 
             
              - .jelly
         | 
| 2056 2211 | 
             
              - .kml
         | 
| 2057 2212 | 
             
              - .launch
         | 
| 2058 2213 | 
             
              - .mxml
         | 
| 2214 | 
            +
              - .nproj
         | 
| 2059 2215 | 
             
              - .osm
         | 
| 2060 2216 | 
             
              - .plist
         | 
| 2061 2217 | 
             
              - .pluginspec
         | 
| @@ -2067,6 +2223,7 @@ XML: | |
| 2067 2223 | 
             
              - .scxml
         | 
| 2068 2224 | 
             
              - .srdf
         | 
| 2069 2225 | 
             
              - .svg
         | 
| 2226 | 
            +
              - .targets
         | 
| 2070 2227 | 
             
              - .tmCommand
         | 
| 2071 2228 | 
             
              - .tmLanguage
         | 
| 2072 2229 | 
             
              - .tmPreferences
         | 
| @@ -2075,6 +2232,8 @@ XML: | |
| 2075 2232 | 
             
              - .tml
         | 
| 2076 2233 | 
             
              - .ui
         | 
| 2077 2234 | 
             
              - .urdf
         | 
| 2235 | 
            +
              - .vbproj
         | 
| 2236 | 
            +
              - .vcxproj
         | 
| 2078 2237 | 
             
              - .vxml
         | 
| 2079 2238 | 
             
              - .wsdl
         | 
| 2080 2239 | 
             
              - .wxi
         | 
| @@ -2097,15 +2256,15 @@ XML: | |
| 2097 2256 | 
             
            XProc:
         | 
| 2098 2257 | 
             
              type: programming
         | 
| 2099 2258 | 
             
              lexer: XML
         | 
| 2100 | 
            -
              primary_extension: .xpl
         | 
| 2101 2259 | 
             
              extensions:
         | 
| 2260 | 
            +
              - .xpl
         | 
| 2102 2261 | 
             
              - .xproc
         | 
| 2103 2262 |  | 
| 2104 2263 | 
             
            XQuery:
         | 
| 2105 2264 | 
             
              type: programming
         | 
| 2106 2265 | 
             
              color: "#2700e2"
         | 
| 2107 | 
            -
              primary_extension: .xquery
         | 
| 2108 2266 | 
             
              extensions:
         | 
| 2267 | 
            +
              - .xquery
         | 
| 2109 2268 | 
             
              - .xq
         | 
| 2110 2269 | 
             
              - .xql
         | 
| 2111 2270 | 
             
              - .xqm
         | 
| @@ -2113,26 +2272,28 @@ XQuery: | |
| 2113 2272 |  | 
| 2114 2273 | 
             
            XS:
         | 
| 2115 2274 | 
             
              lexer: C
         | 
| 2116 | 
            -
               | 
| 2275 | 
            +
              extensions:
         | 
| 2276 | 
            +
              - .xs
         | 
| 2117 2277 |  | 
| 2118 2278 | 
             
            XSLT:
         | 
| 2119 2279 | 
             
              type: programming
         | 
| 2120 2280 | 
             
              aliases:
         | 
| 2121 2281 | 
             
              - xsl
         | 
| 2122 | 
            -
              primary_extension: .xslt
         | 
| 2123 2282 | 
             
              extensions:
         | 
| 2124 | 
            -
             | 
| 2283 | 
            +
              - .xslt
         | 
| 2284 | 
            +
              - .xsl
         | 
| 2125 2285 |  | 
| 2126 2286 | 
             
            Xtend:
         | 
| 2127 2287 | 
             
              type: programming
         | 
| 2128 | 
            -
               | 
| 2288 | 
            +
              extensions:
         | 
| 2289 | 
            +
              - .xtend
         | 
| 2129 2290 |  | 
| 2130 2291 | 
             
            YAML:
         | 
| 2131 2292 | 
             
              type: data
         | 
| 2132 2293 | 
             
              aliases:
         | 
| 2133 2294 | 
             
              - yml
         | 
| 2134 | 
            -
              primary_extension: .yml
         | 
| 2135 2295 | 
             
              extensions:
         | 
| 2296 | 
            +
              - .yml
         | 
| 2136 2297 | 
             
              - .reek
         | 
| 2137 2298 | 
             
              - .rviz
         | 
| 2138 2299 | 
             
              - .yaml
         | 
| @@ -2141,13 +2302,14 @@ Zephir: | |
| 2141 2302 | 
             
              type: programming
         | 
| 2142 2303 | 
             
              lexer: PHP
         | 
| 2143 2304 | 
             
              color: "#118f9e"
         | 
| 2144 | 
            -
               | 
| 2305 | 
            +
              extensions:
         | 
| 2306 | 
            +
              - .zep
         | 
| 2145 2307 |  | 
| 2146 2308 | 
             
            eC:
         | 
| 2147 2309 | 
             
              type: programming
         | 
| 2148 2310 | 
             
              search_term: ec
         | 
| 2149 | 
            -
              primary_extension: .ec
         | 
| 2150 2311 | 
             
              extensions:
         | 
| 2312 | 
            +
              - .ec
         | 
| 2151 2313 | 
             
              - .eh
         | 
| 2152 2314 |  | 
| 2153 2315 | 
             
            edn:
         | 
| @@ -2155,28 +2317,33 @@ edn: | |
| 2155 2317 | 
             
              lexer: Clojure
         | 
| 2156 2318 | 
             
              ace_mode: clojure
         | 
| 2157 2319 | 
             
              color: "#db5855"
         | 
| 2158 | 
            -
               | 
| 2320 | 
            +
              extensions:
         | 
| 2321 | 
            +
              - .edn
         | 
| 2159 2322 |  | 
| 2160 2323 | 
             
            fish:
         | 
| 2161 2324 | 
             
              type: programming
         | 
| 2162 2325 | 
             
              group: Shell
         | 
| 2163 2326 | 
             
              lexer: Text only
         | 
| 2164 | 
            -
               | 
| 2327 | 
            +
              extensions:
         | 
| 2328 | 
            +
              - .fish
         | 
| 2165 2329 |  | 
| 2166 2330 | 
             
            mupad:
         | 
| 2167 2331 | 
             
              lexer: MuPAD
         | 
| 2168 | 
            -
               | 
| 2332 | 
            +
              extensions:
         | 
| 2333 | 
            +
              - .mu
         | 
| 2169 2334 |  | 
| 2170 2335 | 
             
            nesC:
         | 
| 2171 2336 | 
             
              type: programming
         | 
| 2172 2337 | 
             
              color: "#ffce3b"
         | 
| 2173 | 
            -
               | 
| 2338 | 
            +
              extensions:
         | 
| 2339 | 
            +
              - .nc
         | 
| 2174 2340 |  | 
| 2175 2341 | 
             
            ooc:
         | 
| 2176 2342 | 
             
              type: programming
         | 
| 2177 2343 | 
             
              lexer: Ooc
         | 
| 2178 2344 | 
             
              color: "#b0b77e"
         | 
| 2179 | 
            -
               | 
| 2345 | 
            +
              extensions:
         | 
| 2346 | 
            +
              - .ooc
         | 
| 2180 2347 |  | 
| 2181 2348 | 
             
            reStructuredText:
         | 
| 2182 2349 | 
             
              type: prose
         | 
| @@ -2184,8 +2351,8 @@ reStructuredText: | |
| 2184 2351 | 
             
              search_term: rst
         | 
| 2185 2352 | 
             
              aliases:
         | 
| 2186 2353 | 
             
              - rst
         | 
| 2187 | 
            -
              primary_extension: .rst
         | 
| 2188 2354 | 
             
              extensions:
         | 
| 2355 | 
            +
              - .rst
         | 
| 2189 2356 | 
             
              - .rest
         | 
| 2190 2357 |  | 
| 2191 2358 | 
             
            wisp:
         | 
| @@ -2193,10 +2360,12 @@ wisp: | |
| 2193 2360 | 
             
              lexer: Clojure
         | 
| 2194 2361 | 
             
              ace_mode: clojure
         | 
| 2195 2362 | 
             
              color: "#7582D1"
         | 
| 2196 | 
            -
               | 
| 2363 | 
            +
              extensions:
         | 
| 2364 | 
            +
              - .wisp
         | 
| 2197 2365 |  | 
| 2198 2366 | 
             
            xBase:
         | 
| 2199 2367 | 
             
              type: programming
         | 
| 2200 2368 | 
             
              lexer: Text only
         | 
| 2201 2369 | 
             
              color: "#3a4040"
         | 
| 2202 | 
            -
               | 
| 2370 | 
            +
              extensions:
         | 
| 2371 | 
            +
              - .prg
         |