sourcegraph / cody

AI that knows your entire codebase
https://cody.dev
Apache License 2.0
2.24k stars 213 forks source link

Edit: Fix race condition on save (intended deletions vs formatter) #4670

Closed umpox closed 1 week ago

umpox commented 1 week ago

Description

event.waitUntil on onWillSaveTextDocument supports taking a void promise but it does not seem to reliably wait for it.

event.waitUntil also supports taking a promise of TextEdit[]. It seems it will guarantee the lines will be deleted before the save with this approach/

Test plan

  1. Create many edits
  2. Save them
  3. Check there's no race conditions between formatters and our manual line deletion