You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Problem
- missing diagrams for how the chat activation flow will work in flare
- missing diagrams for how e2e test should work in flare
## Solution
- add missing diagrams
- remove lsp debugging in favour of general lsp documentation
---
- Treat all work as PUBLIC. Private `feature/x` branches will not be
squash-merged at release time.
- Your code changes must meet the guidelines in
[CONTRIBUTING.md](https://github.com/aws/aws-toolkit-vscode/blob/master/CONTRIBUTING.md#guidelines).
- License: I confirm that my contribution is made under the terms of the
Apache 2.0 license.
1. Clone https://github.com/aws/language-servers.git and set it up in the same workspace as this project
30
+
31
+
e.g.
32
+
33
+
```
34
+
/aws-toolkit-vscode
35
+
/toolkit
36
+
/core
37
+
/amazonq
38
+
/language-servers
39
+
```
40
+
41
+
2. Inside of the language-servers project run:
42
+
```
43
+
npm install
44
+
npm run compile
45
+
npm run package
46
+
```
47
+
to get the project setup
48
+
3. Uncomment the `__AMAZONQLSP_PATH` variable in `amazonq/.vscode/launch.json` Extension configuration
49
+
4. Use the `Launch LSP with Debugging` configuration and set breakpoints in VSCode or the language server
50
+
51
+
## Amazon Q Inline Activation
52
+
53
+
- In order to get inline completion working you must open a supported file type defined in CodewhispererInlineCompletionLanguages in `packages/amazonq/src/app/inline/completion.ts`
0 commit comments