Skip to content

Commit

Permalink
Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
GearsDatapacks committed Jan 18, 2025
1 parent d59b781 commit 40c40e4
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,30 @@

([Giacomo Cavalieri](https://github.com/giacomocavalieri))

- The Language Server now provides the ability to rename local variables.
For example:

```gleam
pub fn main() {
let wibble = 10
// ^ If you put your cursor here, and trigger a rename
wibble + 1
}
```

Triggering a rename and entering `my_number` results in this code:


```gleam
pub fn main() {
let my_number = 10
my_number + 1
}
```

([Surya Rose](https://github.com/GearsDatapacks))


### Formatter

### Bug fixes
Expand Down

0 comments on commit 40c40e4

Please sign in to comment.