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

Editor completions for extensions to builtin types #7329

Open
fhammerschmidt opened this issue Mar 11, 2025 · 2 comments
Open

Editor completions for extensions to builtin types #7329

fhammerschmidt opened this issue Mar 11, 2025 · 2 comments
Assignees
Labels
editor Everything concerning the analysis binary

Comments

@fhammerschmidt
Copy link
Member

Extend rescript.json with an editorconfig for autocompletion, e.g.

"editor": {
  "autocompleteConfig": {
    "array": ["ArrayUtils"]
  }
}

So that the methods of that module get autocompleted the same way as the @editor.completeFrom types would.

@fhammerschmidt fhammerschmidt added the editor Everything concerning the analysis binary label Mar 11, 2025
@fhammerschmidt fhammerschmidt self-assigned this Mar 11, 2025
@zth
Copy link
Collaborator

zth commented Mar 11, 2025

The example is for a builtin type, but I think we could allow it for other types that you can't access to add directives directly in your project as well. For example, say that you have fastify installed:

"editor": {
  "autocompleteConfig": {
    "Fastify.t": ["FastifyExt"]
  }
}

@fhammerschmidt
Copy link
Member Author

Starting point: #7330

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
editor Everything concerning the analysis binary
Projects
None yet
Development

No branches or pull requests

2 participants