Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Merge pull request #64 from atom/mb-new-cpp-scope-name
Browse files Browse the repository at this point in the history
Handle new c++ scope name
  • Loading branch information
maxbrunsfeld committed Dec 24, 2014
2 parents c6df027 + af69e30 commit 78a15aa
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions grammars/gfm.cson
Original file line number Diff line number Diff line change
Expand Up @@ -427,9 +427,15 @@
'endCaptures':
'0':
'name': 'support.gfm'
'name': 'markup.code.c++.gfm'
'contentName': 'source.c++'
'name': 'markup.code.cpp.gfm'
'contentName': 'source.cpp'
'patterns': [
{
'include': 'source.cpp'
}

# TODO: remove once new language-c package is released with 'source.cpp'
# scope name
{
'include': 'source.c++'
}
Expand Down

0 comments on commit 78a15aa

Please sign in to comment.