microsoft / TypeScript-Sublime-Plugin

IO wrapper around TypeScript language services, allowing for easy consumption by editor plugins
Apache License 2.0
1.72k stars 237 forks source link

Rename doesn't work on the same line #701

Closed DanielRosenwasser closed 5 years ago

DanielRosenwasser commented 5 years ago
const a = (x) => x.y + 1;

Try renaming x to hello, and you'll get

const a = (hello)hello=> x.y + 1;