We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Given a file called foo.gleam, (module name foo), and lots of other modules that have import foo and also call foo.stuff().
foo.gleam
foo
import foo
foo.stuff()
When foo.gleam gets renamed, we can give the user a choice to auto-rename all references and imports.
We may also want to have a rename module code action when on top of a module reference or import, which would need to also rename the file.
The text was updated successfully, but these errors were encountered:
Is file renaming possible via the LSP? If yes, this would be a real boost IMHO.
Sorry, something went wrong.
Yep, this is definitely possible
Let's do it!
No branches or pull requests
Given a file called
foo.gleam
, (module namefoo
), and lots of other modules that haveimport foo
and also callfoo.stuff()
.When
foo.gleam
gets renamed, we can give the user a choice to auto-rename all references and imports.We may also want to have a rename module code action when on top of a module reference or import, which would need to also rename the file.
The text was updated successfully, but these errors were encountered: