diff --git a/DevNotes.md b/DevNotes.md index 12e997e..13ac3a0 100644 --- a/DevNotes.md +++ b/DevNotes.md @@ -15,9 +15,9 @@ Here is the flow that I would like to see if I can get access to the underlying 3. `terminalInstance.clearSelection()` - `src/vs/workbench/contrib/terminal/electron-browser/terminalActions.ts:164` `this._xterm.clearSelection()` - `src/vs/workbench/contrib/terminal/electron-browser/terminalInstance.ts:695` -## Clearning Special Characters +## Clearing Special Characters -One of the first issues that I ran into is that the dat captured from the +One of the first issues that I ran into is that the data captured from the terminal included special characters (like color selections). This regex can be used in js to select all color code special characters so diff --git a/package-lock.json b/package-lock.json index d8f8e64..c55be81 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { - "name": "vscode-terminal-capture", - "version": "0.0.1", + "name": "vscode-better-terminal-capture", + "version": "0.0.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 820501e..1a7d05c 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,15 @@ { - "name": "vscode-terminal-capture", - "displayName": "Terminal Capture", + "name": "vscode-better-terminal-capture", + "displayName": "Better Terminal Capture", "description": " Take an open terminal's output and open it in a tab to quickly navigate and edit the output.", "repository": { "type": "git", - "url": "https://github.com/mikekwright/vscode-terminal-capture" + "url": "https://github.com/introcompsys/vscode-terminal-capture" }, - "version": "0.0.1", - "publisher": "devwright", + "version": "0.0.2", + "publisher": "introcompsys", "engines": { - "vscode": "^1.31.0" + "vscode": "^1.80.1" }, "categories": [ "Other" @@ -21,20 +21,20 @@ "contributes": { "commands": [ { - "command": "extension.terminalCapture.runCapture", - "title": "Terminal: Capture" + "command": "extension.betterterminalCapture.runCapture", + "title": "BetterTerminal: Capture" } ], "configuration": { - "title": "Terminal Capture", + "title": "Better Terminal Capture", "type": "object", "properties": { - "terminalCapture.enable": { + "betterterminalCapture.enable": { "type": "boolean", "description": "If false, disable the terminal capture extension", "default": true }, - "terminalCapture.useClipboard": { + "betterterminalCapture.useClipboard": { "type": "boolean", "description": "If false, use the cache mode that tracks all history", "default": true