-
-
Notifications
You must be signed in to change notification settings - Fork 91
Add GDScript to supported languages #3092
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 9 commits
4436ea8
659337d
18196ca
d44bfae
2861cb9
92e746f
7292978
70d9d90
5a8338f
73b29a0
769e9c5
9ae1308
af382a7
400fa05
20be27f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import type { LanguageScopeSupportFacetMap } from "./scopeSupportFacets.types"; | ||
import { ScopeSupportFacetLevel } from "./scopeSupportFacets.types"; | ||
|
||
//eslint-disable-next-line | ||
rinOfTheStars marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
const { supported, unsupported, notApplicable } = ScopeSupportFacetLevel; | ||
|
||
export const gdscriptScopeSupport: LanguageScopeSupportFacetMap = { | ||
// not applicable | ||
"statement.interface": notApplicable, | ||
"statement.field.interface": notApplicable, | ||
"statement.iteration.interface": notApplicable, | ||
"name.interface": notApplicable, | ||
"name.field.interface": notApplicable, | ||
"name.iteration.interface": notApplicable, | ||
"type.field.interface": notApplicable, | ||
"type.interface": notApplicable, | ||
"type.iteration.interface": notApplicable, | ||
"interior.interface": notApplicable, | ||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { Language } from "./components/Language"; | ||
|
||
# GDScript | ||
|
||
<Language languageId="gdscript" /> |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not a big fan of committing an empty file. Please add at least one scope to it. You can do something simple like There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Going to need to make another PR to add another codium cli naming related fix first so I can more easily do that, but once that's done that should be easy enough There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See #3093 for the fixes mentioned above There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't follow why you would need to update the scripts first? Personally I don't use those scripts at all. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's required in this very specific instance because gdscript isn't supported by prod yet, and I can't get developing from the I can probably bootstrap a local version using the scripts update I made by building from this PR, at the very least, so getting that PR in isn't urgent for now There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would definitely recommend getting the development profile working. That will hot reload and apply any changes whenever you save a scm file. |
Uh oh!
There was an error while loading. Please reload this page.