Skip to content

Commit 69c029e

Browse files
authored
Merge pull request #1380 from RooVetGit/cte/disable-terminal-actions
2 parents 9ffd389 + 75dcc2f commit 69c029e

File tree

4 files changed

+2
-132
lines changed

4 files changed

+2
-132
lines changed

package.json

Lines changed: 0 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -128,31 +128,6 @@
128128
"command": "roo-cline.addToContext",
129129
"title": "Roo Code: Add To Context",
130130
"category": "Roo Code"
131-
},
132-
{
133-
"command": "roo-cline.terminalAddToContext",
134-
"title": "Roo Code: Add Terminal Content to Context",
135-
"category": "Terminal"
136-
},
137-
{
138-
"command": "roo-cline.terminalFixCommand",
139-
"title": "Roo Code: Fix This Command",
140-
"category": "Terminal"
141-
},
142-
{
143-
"command": "roo-cline.terminalExplainCommand",
144-
"title": "Roo Code: Explain This Command",
145-
"category": "Terminal"
146-
},
147-
{
148-
"command": "roo-cline.terminalFixCommandInCurrentTask",
149-
"title": "Roo Code: Fix This Command (Current Task)",
150-
"category": "Terminal"
151-
},
152-
{
153-
"command": "roo-cline.terminalExplainCommandInCurrentTask",
154-
"title": "Roo Code: Explain This Command (Current Task)",
155-
"category": "Terminal"
156131
}
157132
],
158133
"menus": {
@@ -178,28 +153,6 @@
178153
"group": "Roo Code@4"
179154
}
180155
],
181-
"terminal/context": [
182-
{
183-
"command": "roo-cline.terminalAddToContext",
184-
"group": "Roo Code@1"
185-
},
186-
{
187-
"command": "roo-cline.terminalFixCommand",
188-
"group": "Roo Code@2"
189-
},
190-
{
191-
"command": "roo-cline.terminalExplainCommand",
192-
"group": "Roo Code@3"
193-
},
194-
{
195-
"command": "roo-cline.terminalFixCommandInCurrentTask",
196-
"group": "Roo Code@5"
197-
},
198-
{
199-
"command": "roo-cline.terminalExplainCommandInCurrentTask",
200-
"group": "Roo Code@6"
201-
}
202-
],
203156
"view/title": [
204157
{
205158
"command": "roo-cline.plusButtonClicked",

src/activate/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
export { handleUri } from "./handleUri"
22
export { registerCommands } from "./registerCommands"
33
export { registerCodeActions } from "./registerCodeActions"
4-
export { registerTerminalActions } from "./registerTerminalActions"

src/activate/registerTerminalActions.ts

Lines changed: 0 additions & 81 deletions
This file was deleted.

src/extension.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { createClineAPI } from "./exports"
55
import "./utils/path" // Necessary to have access to String.prototype.toPosix.
66
import { CodeActionProvider } from "./core/CodeActionProvider"
77
import { DIFF_VIEW_URI_SCHEME } from "./integrations/editor/DiffViewProvider"
8-
import { handleUri, registerCommands, registerCodeActions, registerTerminalActions } from "./activate"
8+
import { handleUri, registerCommands, registerCodeActions } from "./activate"
99
import { McpServerManager } from "./services/mcp/McpServerManager"
1010

1111
/**
@@ -81,12 +81,11 @@ export function activate(context: vscode.ExtensionContext) {
8181
)
8282

8383
registerCodeActions(context)
84-
registerTerminalActions(context)
8584

8685
return createClineAPI(outputChannel, sidebarProvider)
8786
}
8887

89-
// This method is called when your extension is deactivated
88+
// This method is called when your extension is deactivated.
9089
export async function deactivate() {
9190
outputChannel.appendLine("Roo-Code extension deactivated")
9291
// Clean up MCP server manager

0 commit comments

Comments
 (0)