mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-20 09:24:08 +00:00
feat: new tab experience
This commit is contained in:
parent
1c678e7005
commit
0fa28f02a9
36 changed files with 1155 additions and 780 deletions
|
|
@ -4,6 +4,8 @@ import com.intellij.openapi.util.Key;
|
|||
import ee.carlrobert.codegpt.predictions.CodeSuggestionDiffViewer;
|
||||
import ee.carlrobert.codegpt.toolwindow.chat.editor.ToolWindowEditorFileDetails;
|
||||
import ee.carlrobert.llm.client.codegpt.CodeGPTUserDetails;
|
||||
import ee.carlrobert.service.NextEditResponse;
|
||||
import ee.carlrobert.service.PartialCodeCompletionResponse;
|
||||
|
||||
public class CodeGPTKeys {
|
||||
|
||||
|
|
@ -19,6 +21,10 @@ public class CodeGPTKeys {
|
|||
Key.create("codegpt.isPromptTextFieldDocument");
|
||||
public static final Key<CodeSuggestionDiffViewer> EDITOR_PREDICTION_DIFF_VIEWER =
|
||||
Key.create("codegpt.editorPredictionDiffViewer");
|
||||
public static final Key<PartialCodeCompletionResponse> REMAINING_CODE_COMPLETION =
|
||||
Key.create("codegpt.remainingCodeCompletion");
|
||||
public static final Key<NextEditResponse> REMAINING_PREDICTION_RESPONSE =
|
||||
Key.create("codegpt.remainingPredictionResponse");
|
||||
public static final Key<ToolWindowEditorFileDetails> TOOLWINDOW_EDITOR_FILE_DETAILS =
|
||||
Key.create("proxyai.toolwindowEditorFileDetails");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue