Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DevNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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
Expand Down