Skip to content
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

getLanguageConfiguration() API method is missing #109919

Open
minherz opened this issue Nov 3, 2020 · 6 comments
Open

getLanguageConfiguration() API method is missing #109919

minherz opened this issue Nov 3, 2020 · 6 comments
Assignees
Labels
api api-proposal feature-request Request for new features or functionality languages-basic Basic language support issues
Milestone

Comments

@minherz
Copy link

minherz commented Nov 3, 2020

Currently the languages namespace has setLanguageConfiguration() method but does not have getLanguageConfiguration() method. This is a blocker for extensions that need to base the functionality on some properties of the document's language configuration. For example, depending on support of the one line comment vs. multi-line comment in the language syntax, the extension might follow different patterns.
Before introducing development in container it was possible to hack into the vscode directory and read the language configuration. This behavior does not work correctly with containers. If the extension is launched in the container it cannot read vscode on local machine and vice versa. It will come handy having this complimenting API as part of the official support.

@aeschli aeschli assigned alexdima and unassigned aeschli Nov 4, 2020
@alexdima alexdima added api feature-request Request for new features or functionality labels Nov 6, 2020
@alexdima alexdima added the languages-basic Basic language support issues label Nov 16, 2020
@alexdima alexdima removed their assignment Nov 16, 2020
@github-actions github-actions bot locked and limited conversation to collaborators Feb 20, 2021
@jrieken jrieken reopened this Nov 3, 2021
@jrieken jrieken modified the milestones: Backlog Candidates, Backlog Nov 3, 2021
@microsoft microsoft unlocked this conversation Nov 3, 2021
@snnsnn
Copy link

snnsnn commented Apr 10, 2023

@alexr00 This feature had received enough upvotes in #2871 but closed as duplicate in favor of this one and now waiting for upvotes all over again. It is so unfair. Please have the older issue open and close the newer one.

@ap-1
Copy link

ap-1 commented May 2, 2023

cc: @jrieken

I don't know why the original issue was closed while this one was left open, but it seems to be a mistake? #2871, which this issue is a duplicate of, had already received sufficient upvotes

@zm-cttae
Copy link

I have this data available as a service in the vscode-textmate-languageservice library.
I will be packaging up an API for this at the end of the month.

@tahabasri
Copy link

tahabasri commented Sep 3, 2023

I'm currently relying on a tweaked version of [this answer] to retrieve all languages names/extensions (#17885 (comment))

const getLanguages = () => vscode.extensions.all
        .map(i => <any[]>(i.packageJSON as any)?.contributes?.languages)
        .filter(i => i)
        .reduce((a, b) => a.concat(b), [])
        .filter(i => 0 < (i.aliases?.length ?? 0))
        .map(i => { return {
            alias: i?.aliases?.[0],
            extension: i?.extensions?.[0]
            };
        });

@zm-cttae
Copy link

zm-cttae commented Sep 8, 2023

https://github.com/vsce-toolroom/vscode-textmate-languageservice/releases/tag/v2.0.0

  • Add getTokenInformationAtPosition, getScopeInformationAtPosition, getScopeRangeAtPosition method to get token data.
  • Add getLanguageConfiguration method for language configuration: LanguageDefinition.
  • Add getGrammarConfiguration method to get language grammar wiring: GrammarLanguageDefinition.
  • Add getContributorExtension method to get extension source of language ID: vscode.Extension.

Please star the project on GitHub if you think there is further use you could make of it.

@lastobelus
Copy link

@zm-cttae If anycode doesn't include a language I'm interested in, is vscode-textmate-languageservice still my best bet for developing extensions if I need to treat code as code? How heavy is it? The current language I'm most interested in is Elixir, and the ElixirLS already adds a lot of fan noise to using vscode :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api api-proposal feature-request Request for new features or functionality languages-basic Basic language support issues
Projects
None yet
Development

No branches or pull requests

11 participants