We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d59b781 commit 40c40e4Copy full SHA for 40c40e4
CHANGELOG.md
@@ -139,6 +139,30 @@
139
140
([Giacomo Cavalieri](https://github.com/giacomocavalieri))
141
142
+- The Language Server now provides the ability to rename local variables.
143
+ For example:
144
+
145
+ ```gleam
146
+ pub fn main() {
147
+ let wibble = 10
148
+ // ^ If you put your cursor here, and trigger a rename
149
+ wibble + 1
150
+ }
151
+ ```
152
153
+ Triggering a rename and entering `my_number` results in this code:
154
155
156
157
158
+ let my_number = 10
159
+ my_number + 1
160
161
162
163
+ ([Surya Rose](https://github.com/GearsDatapacks))
164
165
166
### Formatter
167
168
### Bug fixes
0 commit comments