Last active
May 22, 2019 21:23
-
-
Save rnarian/83034781509761ae0cdb to your computer and use it in GitHub Desktop.
Atom scope name list
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source.c | |
source.c++ | |
source.coffee | |
source.css | |
source.css.less | |
source.css.scss | |
source.gfm | |
source.git-config | |
source.go | |
source.java | |
source.java-properties | |
source.js | |
source.js.rails source.js.jquery | |
source.js.regexp | |
source.json | |
source.litcoffee | |
source.makefile | |
source.objc | |
source.objc++ | |
source.perl | |
source.plist | |
source.python | |
source.regexp.python | |
source.ruby | |
source.ruby.rails | |
source.ruby.rails.rjs | |
source.sass | |
source.shell | |
source.sql | |
source.sql.ruby | |
source.strings | |
source.toml | |
source.yaml | |
text.git-commit | |
text.git-rebase | |
text.html.basic | |
text.html.erb | |
text.html.jsp | |
text.html.php | |
text.html.ruby | |
text.hyperlink | |
text.junit-test-report | |
text.plain | |
text.plain.null-grammar | |
text.todo | |
text.xml | |
text.xml.plist | |
text.xml.xsl |
I am missing the source for markdown file, also the github markdown
@8BitRobot how you do that? i try but get
Uncaught TypeError: atom.workspace.getActiveTextEditor.getGrammar is not a function
at :1:36
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm pretty sure that the scope for C++ files is
source.cpp
, notsource.c++
. I checked in the console (by runningatom.workspace.getActiveTextEditor.getGrammar().scopeName
) for multiple different extensions of C++ files, such as.c++
and.cpp
and.cxx,
and it showed the same scope for all of them,source.cpp
.