Skip to content

Commit

Permalink
recognize json as a subtype
Browse files Browse the repository at this point in the history
  • Loading branch information
jneen committed Apr 15, 2011
1 parent 83cc95d commit 18730f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syntax/eco.vim
Expand Up @@ -19,7 +19,7 @@ if !exists("b:eco_subtype")
let b:eco_subtype = 'ruby'
elseif b:eco_subtype == 'yml'
let b:eco_subtype = 'yaml'
elseif b:eco_subtype == 'js'
elseif b:eco_subtype == 'js' || b:eco_subtype == 'json'
let b:eco_subtype = 'javascript'
elseif b:eco_subtype == 'txt'
" Conventional; not a real file type
Expand Down

0 comments on commit 18730f9

Please sign in to comment.