Skip to content

Commit

Permalink
Add vim coda and fix whitespace issues in parsers category
Browse files Browse the repository at this point in the history
  • Loading branch information
paultcochrane committed Aug 16, 2015
1 parent b2f5c43 commit f93f916
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 3 additions & 1 deletion categories/parsers/CSSGrammar.pm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ grammar CSSGrammar {
token prio { <important_sym> }
token expr { <term> +% <operator>? }
token cssident { '-'?<namestart><namechar>* }
rule term { <unary_operator>?
rule term { <unary_operator>?
[ <percentage> | <length> | <ems> | <exs> | <angle> | <time> | <freq> | <number> ]
| <string> | <uri> | <function> | <cssident> | <hexcolor>
}
Expand Down Expand Up @@ -64,3 +64,5 @@ grammar CSSGrammar {

method panic($e) {die $e;}
}

# vim: expandtab shiftwidth=4 ft=perl6
3 changes: 1 addition & 2 deletions categories/parsers/Newick.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ grammar Newick {
token species { <.ident>+ }
}

# vim: ft=perl6

# vim: expandtab shiftwidth=4 ft=perl6

0 comments on commit f93f916

Please sign in to comment.