Commit 83e1a52
authored
feat(amazonq): inline completion JB API migration (#5851)
* feat: migrate CodeWhisperer to native JetBrains inline completion API
Refactor CodeWhisperer inline completion implementation to use JetBrains'
native inline completion provider instead of custom popup-based system.
Key changes:
- Replace custom action handlers with QInlineCompletionProvider
- Remove deprecated popup navigation and acceptance actions
- Consolidate authentication logic for Amazon Q connections
- Migrate from CodeWhispererConnection to QConnection
- Remove custom action promoter for inline completion
- Streamline auto-trigger handling and invocation status
This change improves IDE integration and provides a more native
completion experience for users.
* ignore bunch of tests that need a rewrite for now
* add filter in telemetry viewer and detektMain
* api compatiblity fix
* fix codereferences to be inserted after the code is inserted
* add feature user-facing message
* use executeAsyncIfRunning1 parent a6f98ce commit 83e1a52
File tree
53 files changed
+932
-445
lines changed- .changes/next-release
- plugins
- amazonq
- chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/auth
- codewhisperer/jetbrains-community
- resources/META-INF
- src-242/software/aws/toolkits/jetbrains/services/codewhisperer/popup
- src-243+/software/aws/toolkits/jetbrains/services/codewhisperer/popup
- src
- migration/software/aws/toolkits/jetbrains/services/codewhisperer/explorer
- software/aws/toolkits/jetbrains/services/codewhisperer
- actions
- codescan
- editor
- explorer/actions
- importadder
- model
- popup
- service
- settings
- startup
- telemetry
- toolwindow
- util
- tst/software/aws/toolkits/jetbrains/services/codewhisperer
- core/jetbrains-community
- resources/META-INF
- src/software/aws/toolkits/jetbrains
- core
- credentials/pinning
- gettingstarted
- editor
- services/telemetry
- utils
- toolkit/jetbrains-core/src/software/aws/toolkits/jetbrains/core
- gettingstarted/editor
- startup
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
53 files changed
+932
-445
lines changedLines changed: 4 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
Lines changed: 4 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
Lines changed: 4 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
Lines changed: 4 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
Lines changed: 6 additions & 16 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
30 | 29 | | |
31 | 30 | | |
32 | 31 | | |
33 | | - | |
34 | | - | |
| 32 | + | |
| 33 | + | |
35 | 34 | | |
36 | 35 | | |
37 | 36 | | |
38 | 37 | | |
39 | 38 | | |
40 | | - | |
41 | 39 | | |
42 | 40 | | |
43 | 41 | | |
44 | 42 | | |
45 | | - | |
46 | | - | |
47 | | - | |
48 | | - | |
49 | | - | |
50 | | - | |
51 | | - | |
52 | | - | |
53 | | - | |
54 | | - | |
55 | | - | |
56 | | - | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
57 | 47 | | |
58 | 48 | | |
59 | 49 | | |
| |||
Lines changed: 3 additions & 27 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
60 | | - | |
61 | | - | |
62 | | - | |
63 | | - | |
64 | 60 | | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
65 | 64 | | |
66 | 65 | | |
67 | 66 | | |
| |||
90 | 89 | | |
91 | 90 | | |
92 | 91 | | |
93 | | - | |
94 | | - | |
95 | | - | |
96 | | - | |
97 | | - | |
98 | | - | |
99 | | - | |
100 | | - | |
101 | | - | |
102 | | - | |
103 | | - | |
104 | | - | |
105 | | - | |
106 | | - | |
107 | | - | |
108 | | - | |
109 | | - | |
110 | | - | |
111 | | - | |
112 | | - | |
113 | | - | |
114 | | - | |
115 | | - | |
116 | 92 | | |
117 | 93 | | |
118 | 94 | | |
| |||
Lines changed: 21 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
Lines changed: 17 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | | - | |
12 | | - | |
13 | | - | |
14 | 11 | | |
15 | 12 | | |
16 | | - | |
| 13 | + | |
17 | 14 | | |
18 | 15 | | |
19 | 16 | | |
| |||
38 | 35 | | |
39 | 36 | | |
40 | 37 | | |
41 | | - | |
| 38 | + | |
42 | 39 | | |
43 | 40 | | |
44 | 41 | | |
| |||
95 | 92 | | |
96 | 93 | | |
97 | 94 | | |
98 | | - | |
99 | | - | |
100 | | - | |
101 | | - | |
102 | | - | |
103 | | - | |
104 | | - | |
105 | | - | |
106 | | - | |
107 | | - | |
108 | | - | |
109 | | - | |
110 | | - | |
111 | | - | |
112 | 95 | | |
113 | | - | |
| 96 | + | |
114 | 97 | | |
115 | 98 | | |
116 | 99 | | |
| |||
148 | 131 | | |
149 | 132 | | |
150 | 133 | | |
151 | | - | |
152 | | - | |
153 | 134 | | |
154 | 135 | | |
Lines changed: 0 additions & 34 deletions
This file was deleted.
0 commit comments