210 - Add diff function (#213)

* Add diff function

* modify writeSpace

* Remove unnecessary code

* Add telemetry for toolwindow editor actions

---------

Co-authored-by: wang <1625116638@qq.com>
Co-authored-by: Carl-Robert Linnupuu <carlrobertoh@gmail.com>
This commit is contained in:
wangwangxf 2023-10-02 16:24:09 +08:00 committed by GitHub
parent a2738dac0f
commit 8269ba371c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 488 additions and 274 deletions

View file

@ -6,7 +6,8 @@ public enum TelemetryAction {
COMPLETION("CodeGPT-Completion"),
COMPLETION_ERROR("CodeGPT-Completion-Error"),
IDE_ACTION("CodeGPT-Action");
IDE_ACTION("CodeGPT-Action"),
IDE_ACTION_ERROR("CodeGPT-Action-Error");
private final String code;