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
Copy file name to clipboardExpand all lines: docs/lsp.md
+11-2Lines changed: 11 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,8 +45,17 @@ sequenceDiagram
45
45
npm run package
46
46
```
47
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
48
+
3. Enable the lsp experiment:
49
+
```
50
+
"aws.experiments": {
51
+
"amazonqLSP": true,
52
+
"amazonqLSPInline": true, // optional: enables inline completion from flare
53
+
"amazonqLSPChat": true // optional: enables chat from flare
54
+
}
55
+
```
56
+
4. Uncomment the `__AMAZONQLSP_PATH` variable in `amazonq/.vscode/launch.json` Extension configuration
57
+
1. Uncomment the `__AMAZONQLSP_UI` variable in `amazonq/.vscode/launch.json` Extension configuration if you want to debug the flare chat-client as well
58
+
5. Use the `Launch LSP with Debugging` configuration and set breakpoints in VSCode or the language server
Copy file name to clipboardExpand all lines: packages/amazonq/package.json
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
"name": "amazon-q-vscode",
3
3
"displayName": "Amazon Q",
4
4
"description": "The most capable generative AI-powered assistant for building, operating, and transforming software, with advanced capabilities for managing data and AI",
0 commit comments