Skip to content

Commit 6ea4a29

Browse files
committed
revert unwanted
1 parent 649dc1a commit 6ea4a29

File tree

5 files changed

+59
-69
lines changed

5 files changed

+59
-69
lines changed

aws-toolkit-vscode.code-workspace

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212
{
1313
"path": "packages/amazonq",
1414
},
15-
{
16-
"path": "../language-servers",
17-
},
1815
],
1916
"settings": {
2017
"typescript.tsdk": "node_modules/typescript/lib",

packages/amazonq/.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
1414
"env": {
1515
"SSMDOCUMENT_LANGUAGESERVER_PORT": "6010",
16-
"WEBPACK_DEVELOPER_SERVER": "http://localhost:8080",
16+
"WEBPACK_DEVELOPER_SERVER": "http://localhost:8080"
1717
// Below allows for overrides used during development
18-
"__AMAZONQLSP_PATH": "${workspaceFolder}/../../../language-servers/app/aws-lsp-codewhisperer-runtimes/out/agent-standalone.js"
18+
// "__AMAZONQLSP_PATH": "${workspaceFolder}/../../../language-servers/app/aws-lsp-codewhisperer-runtimes/out/agent-standalone.js",
1919
// "__AMAZONQLSP_UI": "${workspaceFolder}/../../../language-servers/chat-client/build/amazonq-ui.js"
2020
},
2121
"envFile": "${workspaceFolder}/.local.env",

packages/amazonq/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "amazon-q-vscode",
33
"displayName": "Amazon Q",
44
"description": "The most capable generative AI–powered assistant for software development.",
5-
"version": "1.103.0-SNAPSHOT",
5+
"version": "1.104.0-SNAPSHOT",
66
"extensionKind": [
77
"workspace"
88
],

packages/core/src/codewhisperer/activation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ import { SecurityIssueTreeViewProvider } from './service/securityIssueTreeViewPr
8383
import { setContext } from '../shared/vscode/setContext'
8484
import { syncSecurityIssueWebview } from './views/securityIssue/securityIssueWebview'
8585
import { detectCommentAboveLine } from '../shared/utilities/commentUtils'
86-
// import { activateEditTracking } from './nextEditPrediction/activation'
86+
import { activateEditTracking } from './nextEditPrediction/activation'
8787
import { notifySelectDeveloperProfile } from './region/utils'
8888

8989
let localize: nls.LocalizeFunc
@@ -468,7 +468,7 @@ export async function activate(context: ExtContext): Promise<void> {
468468
)
469469
}
470470

471-
// activateEditTracking(context)
471+
activateEditTracking(context)
472472
}
473473

474474
export async function shutdown() {

0 commit comments

Comments
 (0)