1. 22 7月, 2014 38 次提交
  2. 21 7月, 2014 2 次提交
    • C
      Fix :syn-include usage of Vim filetype. · 0a0c6da5
      Chris Morgan 提交于
      Here’s what the Vim manual says in *:syn-include*:
      
          :sy[ntax] include [@{grouplist-name}] {file-name}
      
      	All syntax items declared in the included file will have the
      	"contained" flag added.  In addition, if a group list is
      	specified, all top-level syntax items in the included file will
      	be added to that list.
      
      We had two rules for `rustModPath`, one `contained` and the other not.
      The effect was that the second (now renamed to `rustModPathInUse`) was
      being included in the group list, and thus that all identifiers were
      being highlighted as `Include`, which is definitely not what we wanted.
      0a0c6da5
    • C
      Highlight $(…)* and $foo in Vim. · ca6ffac4
      Chris Morgan 提交于
      ca6ffac4