Tinker with the reporting of telemetry events (#34239)

Release Notes:

- N/A

---------

Co-authored-by: Katie Geer <katie@zed.dev>
This commit is contained in:
Mikayla Maki 2025-07-11 12:02:40 -07:00 committed by GitHub
parent fbead09c30
commit 625a4b90a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 15 additions and 4 deletions

View file

@ -2322,7 +2322,10 @@ impl Editor {
editor.update_lsp_data(false, None, window, cx);
}
editor.report_editor_event("Editor Opened", None, cx);
if editor.mode.is_full() {
editor.report_editor_event("Editor Opened", None, cx);
}
editor
}