-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request - Scripts Panel #1595
Comments
panes are comimg into the terminal soon, well its already within the code, its just unfinished |
Actually, I'm gonna re-open this. This is a not terrible idea for an extension, similar to #644 |
Adding some other comments from other duped threads: @ThatWionGuy in #5273:
_ @zadjii-msft in #5273 _:
_ @MrGolden1 in #11270 _:
|
The 'scripts panel' that starts this thread is great for indexing/retaining/invoking a massive library of scripts. Later suggestions are closer to my needs: frequently accessing a (more limited, but commonly used) set of commands or executables (batch files/shell scripts/python/etc.). I'd like to see one step further in terms of simplification (since UI elements is on the roadmap for extensions): a generic toolbar which contains 'buttons' that are linked to specific commands or executables. The profile structure suggested in #5273 could be extended to support the configuration of the toolbar (also add an 'icon' for quick & easy locating of specific buttons). I'm thinking the end result would be something akin to Chrome's 'Bookmarks' toolbar. Once defined, your favorite commands are one click away! As a next-level of difficulty, other elements could be added to add variability to toolbar items, such as a listbox to select one of several 'user profiles' when logging into ssh, or a textbox to enter a variable to pass on the command line to the script invoked by the associated button, etc. |
I think we've actually got a good mental model on the team (if albeit not formally communicated) of how this is going to end up working. We've got our plan for action ID's, and customizing the dropdown with those action IDs (#1571). The "bookmarks bar" would just be the same kind of thing, with different UI. It's just another place that users can bind actions to a button. So opening specific profiles, running commands, all those could be bound to those buttons. (see also #2934, #4531) Moving some relevant discussion from #6412:
|
Note to self: I'm gonna start using this thread for the "input actions" mode of the command palette. I've had notes all over, but I'm copying bits here for tracking
And then the many follow ups:
|
The Initial wireframes Look similar to what ist available in Warp (Warp Drive Workflows) https://docs.warp.dev/features/warp-drive/workflows Having These Concepts directly integrated into the terminal (ai as Well) feels really great! |
There's two parts to this PR that should be considered _separately_. 1. The Suggestions UI, a new graphical menu for displaying suggestions / completions to the user in the context of the terminal the user is working in. 2. The VsCode shell completions protocol. This enables the shell to invoke this UI via a VT sequence. These are being introduced at the same time, because they both require one another. However, I need to absolutely emphasize: ### THE FORMAT OF THE COMPLETION PROTOCOL IS EXPERIMENTAL AND SUBJECT TO CHANGE This is what we've prototyped with VsCode, but we're still working on how we want to conclusively define that protocol. However, we can also refine the Suggestions UI independently of how the protocol is actually implemented. This will let us rev the Suggestions UI to support other things like tooltips, recent commands, tasks, INDEPENDENTLY of us rev'ing the completion protocol. So yes, they're both here, but let's not nitpick that protocol for now. ### Checklist * Doesn't actually close anything * Heavily related to #3121, but I'm not gonna say that's closed till we settle on the protocol * See also: * #1595 * #14779 * microsoft/vscode#171648 ### Detailed Description #### Suggestions UI The Suggestions UI is spec'ed over in #14864, so go read that. It's basically a transient Command Palette, that floats by the user's cursor. It's heavily forked from the Command Palette code, with all the business about switching modes removed. The major bit of new code is `SuggestionsControl::Anchor`. It also supports two "modes": * A "palette", which is like the command palette - a list with a text box * A "menu", which is more like the intellisense flyout. No text box. This is the mode that the shell completions use #### Shell Completions Protocol I literally cannot say this enough times - this protocol is experimental and subject to change. Build on it at your own peril. It's disabled in Release builds (but available in preview behind `globals.experimental.enableShellCompletionMenu`), so that when it ships, no one can take a dependency on it accidentally. Right now we're just taking a blob of JSON, passing that up to the App layer, who asks `Command` to parse it and build a list of `sendInput` actions to populate the menu with. It's not a particularly elegant solution, but it's good enough to prototype with. #### How do I test this? I've been testing this in two parts. You'll need a snippet in your powershell profile, and a keybinding in the Terminal settings to trigger it. The work together by binding <kbd>Ctrl+space</kbd> to _essentially_ send <kbd>F12</kbd><kbd>b</kbd>. Wacky, but it works. ```json { "command": { "action": "sendInput","input": "\u001b[24~b" }, "keys": "ctrl+space" }, ``` ```ps1 function Send-Completions2 { $commandLine = "" $cursorIndex = 0 # TODO: Since fuzzy matching exists, should completions be provided only for character after the # last space and then filter on the client side? That would let you trigger ctrl+space # anywhere on a word and have full completions available [Microsoft.PowerShell.PSConsoleReadLine]::GetBufferState([ref]$commandLine, [ref]$cursorIndex) $completionPrefix = $commandLine # Get completions $result = "`e]633;Completions" if ($completionPrefix.Length -gt 0) { # Get and send completions $completions = TabExpansion2 -inputScript $completionPrefix -cursorColumn $cursorIndex if ($null -ne $completions.CompletionMatches) { $result += ";$($completions.ReplacementIndex);$($completions.ReplacementLength);$($cursorIndex);" $result += $completions.CompletionMatches | ConvertTo-Json -Compress } } $result += "`a" Write-Host -NoNewLine $result } function Set-MappedKeyHandlers { # VS Code send completions request (may override Ctrl+Spacebar) Set-PSReadLineKeyHandler -Chord 'F12,b' -ScriptBlock { Send-Completions2 } } # Register key handlers if PSReadLine is available if (Get-Module -Name PSReadLine) { Set-MappedKeyHandlers } ``` ### TODO * [x] `(prompt | format-hex).`<kbd>Ctrl+space</kbd> -> This always throws an exception. Seems like the payload is always clipped to ```{"CompletionText":"Ascii","ListItemText":"Ascii","ResultType":5,"ToolTip":"string Ascii { get``` and that ain't JSON. Investigate on the pwsh side?
_targets #15027_ Adds a new suggestion source, `tasks`, that allows a user to open the Suggestions UI with `sendInput` commands saved in their settings. `source` becomes a flag setting, so it can be combined like so: ```json { "keys": "ctrl+shift+h", "command": { "action": "suggestions", "source": "commandHistory", "useCommandline":true }, }, { "keys": "ctrl+shift+y", "command": { "action": "suggestions", "source": "tasks", "useCommandline":false }, }, { "keys": "ctrl+shift+b", "command": { "action": "suggestions", "source": ["all"], "useCommandline":true }, }, ``` If a nested command has `sendInput` commands underneath it, this will build a tree of commands that only include `sendInput`s as leaves (but leave the rest of the nesting structure intact). ## References and Relevant Issues Closes #1595 See also #13445 As spec'd in #14864 ## Validation Steps Performed Tested manually
## Summary of the Pull Request > ## Abstract > > Multiple related scenarios have come up where it would be beneficial to display > actionable UI to the user within the context of the active terminal itself. This > UI would be akin to the Intellisense UI in Visual Studio. It appears right where > the user is typing, and can help provide immediate content for the user, based > on some context. The "Suggestions UI" is this new ephemeral UI within the > Windows Terminal that can display different types of actions, from different > sources. > ## Detailed Description of the Pull Request / Additional comments _\*<sup>\*</sup><sub>\*</sub> read the spec <sub>\*</sub><sup>\*</sup>\*_ Similar to #14792, a lot of this code is written. This stuff isn't checked in though, so I'm presenting formally before I start yeeting PRs out there. ## PR Checklist - [x] This is a spec for #1595. It also references: * #3121 * #10436 * #12927 * #12863
This specs out a lot of plans for snippets. We've already got these in the sxnui as "tasks", but we can do so very much more. This spec is a few years old now, but it's time for it to get promoted out of my draft branch. References: * #1595 * #7039 * #3121 * #10436 * #12927 * #12857 * #5790 * #15845 --------- Co-authored-by: Dustin L. Howett <duhowett@microsoft.com>
*Total -- 12,881.26kb -> 10,033.34kb (22.11%) /doc/specs/microsoft#1595 - Suggestions UI/img/shell-completion-tooltip-000.png -- 12.33kb -> 3.46kb (71.94%) /doc/specs/drafts/microsoft#642 - Buffer Exporting and Logging/SecureCRT-logging-settings.png -- 57.54kb -> 21.91kb (61.93%) /doc/specs/microsoft#5000 - Process Model 2.0/figure-002.png -- 36.77kb -> 15.46kb (57.94%) /doc/specs/microsoft#5000 - Process Model 2.0/figure-001.png -- 24.91kb -> 10.50kb (57.87%) /doc/specs/microsoft#5000 - Process Model 2.0/figure-003.png -- 52.36kb -> 22.23kb (57.55%) /doc/specs/drafts/microsoft#642 - Buffer Exporting and Logging/PuTTY-logging-settings.png -- 13.71kb -> 6.06kb (55.76%) /doc/specs/microsoft#5000 - Process Model 2.0/mixed-elevation.png -- 44.33kb -> 19.66kb (55.65%) /doc/specs/microsoft#5000 - Process Model 2.0/drop-tab-on-existing-window.png -- 54.46kb -> 24.61kb (54.81%) /doc/specs/microsoft#5000 - Process Model 2.0/tear-out-tab.png -- 46.50kb -> 21.75kb (53.22%) /doc/specs/drafts/microsoft#642 - Buffer Exporting and Logging/ConEmu-logging-settings.png -- 72.54kb -> 38.55kb (46.85%) /doc/specs/microsoft#5000 - Process Model 2.0/UAC-shield-in-titlebar.png -- 565.40kb -> 308.13kb (45.5%) /doc/specs/microsoft#1595 - Suggestions UI/img/developers-already-do-this-000.png -- 43.26kb -> 24.14kb (44.2%) /res/terminal/images-Can/Square44x44Logo.targetsize-256_contrast-black.png -- 3.97kb -> 2.23kb (43.75%) /res/terminal/images-Can/Square44x44Logo.targetsize-256_altform-unplated_contrast-black.png -- 3.97kb -> 2.23kb (43.75%) /doc/specs/drafts/microsoft#3327 - Application Theming/AcrylicInTitlebar.png -- 400.74kb -> 239.31kb (40.28%) /doc/specs/microsoft#1595 - Suggestions UI/img/vscode-shell-integration-gutter-mark.png -- 37.92kb -> 22.94kb (39.49%) /doc/specs/microsoft#11000 - Marks/vscode-shell-integration-gutter-mark.png -- 37.92kb -> 22.94kb (39.49%) /doc/specs/microsoft#16599 - Quick Fix/vscode-copilot.png -- 19.30kb -> 12.00kb (37.85%) /doc/specs/drafts/microsoft#3327 - Application Theming/AcrylicTerminalBackgroundInTitlebar.png -- 779.06kb -> 484.52kb (37.81%) /doc/specs/microsoft#1564 - Settings UI/copy-settings-2.png -- 362.41kb -> 225.56kb (37.76%) /src/tools/MonarchPeasantPackage/Images/SplashScreen.scale-200.png -- 7.52kb -> 4.71kb (37.4%) /res/terminal/images-Can/LockScreenLogo.scale-400_contrast-black.png -- 1.68kb -> 1.06kb (37.13%) /res/terminal/images-Can/Square44x44Logo.targetsize-96_contrast-black.png -- 1.68kb -> 1.06kb (37.13%) /res/terminal/images-Can/Square44x44Logo.targetsize-96_altform-unplated_contrast-black.png -- 1.68kb -> 1.06kb (37.13%) /res/terminal/Terminal_Dev.svg -- 12.06kb -> 7.63kb (36.71%) /res/terminal/images-Can/Square44x44Logo.targetsize-80_altform-unplated_contrast-black.png -- 1.53kb -> 0.97kb (36.21%) /res/terminal/images-Can/Square44x44Logo.targetsize-80_contrast-black.png -- 1.53kb -> 0.97kb (36.21%) /res/terminal/Terminal_Can.svg -- 12.41kb -> 7.98kb (35.68%) /doc/specs/microsoft#1595 - Suggestions UI/img/jupyter-notebooks-example.png -- 35.01kb -> 22.83kb (34.77%) /res/terminal/Terminal_Pre.svg -- 13.01kb -> 8.59kb (34.02%) /doc/specs/microsoft#6899 - Action IDs/data-mockup-actions-ids-keys-maps.png -- 171.77kb -> 113.38kb (33.99%) /doc/specs/microsoft#1564 - Settings UI/copy-settings-1.png -- 364.43kb -> 241.25kb (33.8%) /doc/specs/drafts/microsoft#642 - Buffer Exporting and Logging/securecrt-context-menu.png -- 41.83kb -> 27.98kb (33.1%) /doc/specs/drafts/microsoft#2634 - Broadcast Input/broadcast-segoe-icon.png -- 3.01kb -> 2.03kb (32.6%) /doc/specs/microsoft#1595 - Suggestions UI/img/GitHub-open-with.png -- 44.96kb -> 30.46kb (32.24%) /res/terminal/images-Can/Square44x44Logo.targetsize-64_contrast-black.png -- 1.23kb -> 0.85kb (31.11%) /res/terminal/images-Can/Square44x44Logo.targetsize-64_altform-unplated_contrast-black.png -- 1.23kb -> 0.85kb (31.11%) /res/terminal/images-Can/Square44x44Logo.targetsize-72_altform-unplated_contrast-black.png -- 1.29kb -> 0.89kb (30.94%) /res/terminal/images-Can/Square44x44Logo.targetsize-72_contrast-black.png -- 1.29kb -> 0.89kb (30.94%) /res/terminal/images-Can/Square44x44Logo.targetsize-60_contrast-black.png -- 1.21kb -> 0.85kb (29.74%) /res/terminal/images-Can/Square44x44Logo.targetsize-60_altform-unplated_contrast-black.png -- 1.21kb -> 0.85kb (29.74%) /doc/specs/microsoft#5000 - Process Model 2.0/wt-session-0.png -- 92.77kb -> 65.23kb (29.68%) /doc/specs/microsoft#5000 - Process Model 2.0/auto-glom-wt-exe.png -- 82.96kb -> 59.13kb (28.72%) /doc/specs/drafts/microsoft#3327 - Application Theming/Tab-Matches-Terminal-Color-000.png -- 8.56kb -> 6.15kb (28.15%) /doc/specs/microsoft#5000 - Process Model 2.0/single-instance-mode-cwd.png -- 52.81kb -> 38.39kb (27.31%) /doc/specs/microsoft#1595 - Suggestions UI/img/inline-blocks-000.png -- 48.62kb -> 35.40kb (27.19%) /doc/specs/microsoft#11000 - Marks/ftcs-diagram.png -- 200.97kb -> 147.92kb (26.39%) /res/terminal/images-Can/LockScreenLogo.scale-200_contrast-black.png -- 0.94kb -> 0.69kb (26.17%) /res/terminal/images-Can/Square44x44Logo.targetsize-48_contrast-black.png -- 0.94kb -> 0.69kb (26.17%) /res/terminal/images-Can/Square44x44Logo.targetsize-48_altform-unplated_contrast-black.png -- 0.94kb -> 0.69kb (26.17%) /doc/specs/microsoft#1595 - Suggestions UI/img/Copilot-in-cmdpal.png -- 100.52kb -> 75.56kb (24.83%) /doc/specs/microsoft#653 - Quake Mode/tray-icon-000.png -- 19.46kb -> 14.69kb (24.53%) /res/terminal/images-Can/LockScreenLogo.scale-150_contrast-black.png -- 0.82kb -> 0.64kb (21.85%) /res/terminal/images-Can/Square44x44Logo.targetsize-36_altform-unplated_contrast-black.png -- 0.82kb -> 0.64kb (21.85%) /res/terminal/images-Can/Square44x44Logo.targetsize-36_contrast-black.png -- 0.82kb -> 0.64kb (21.85%) /res/terminal/images-Can/Square44x44Logo.targetsize-256_altform-unplated_contrast-white.png -- 2.94kb -> 2.31kb (21.37%) /res/terminal/images-Can/Square44x44Logo.targetsize-256_contrast-white.png -- 2.94kb -> 2.31kb (21.37%) /doc/specs/drafts/microsoft#3327 - Application Theming/mica-in-control-000.png -- 904.90kb -> 711.77kb (21.34%) /res/terminal/images-Can/Square44x44Logo.targetsize-40_contrast-black.png -- 0.85kb -> 0.67kb (20.99%) /res/terminal/images-Can/Square44x44Logo.targetsize-40_altform-unplated_contrast-black.png -- 0.85kb -> 0.67kb (20.99%) /samples/PixelShaders/Screenshots/GraphCosine.png -- 115.72kb -> 91.74kb (20.72%) /res/terminal/images-Can/Square150x150Logo.scale-200_contrast-black.png -- 1.72kb -> 1.37kb (20.24%) /res/terminal/images-Can/StoreLogo.scale-400_contrast-black.png -- 1.86kb -> 1.49kb (20.15%) /res/terminal/images-Can/LargeTile.scale-100_contrast-black.png -- 1.74kb -> 1.39kb (20.07%) /doc/specs/microsoft#1595 - Suggestions UI/img/mockup-000.png -- 867.79kb -> 695.02kb (19.91%) /res/terminal/images-Can/Square44x44Logo.scale-400_contrast-black.png -- 1.76kb -> 1.41kb (19.86%) /res/terminal/images-Can/SmallTile.scale-400_contrast-white.png -- 2.05kb -> 1.64kb (19.81%) /res/terminal/images-Can/SmallTile.scale-200_contrast-black.png -- 1.21kb -> 0.97kb (19.26%) /src/tools/MonarchPeasantSample/monarch-peasant-sample-000.gif -- 2,671.70kb -> 2,160.44kb (19.14%) /doc/specs/microsoft#1564 - Settings UI/add-new-profile.png -- 222.16kb -> 180.46kb (18.77%) /res/terminal/images-Can/SmallTile.scale-400_contrast-black.png -- 2.03kb -> 1.66kb (18.4%) /res/terminal/images-Can/StoreLogo.scale-400_contrast-white.png -- 1.84kb -> 1.50kb (18.24%) /doc/specs/microsoft#4993 - Keyboard Selection/images/CopyModeFlowchart.png -- 23.72kb -> 19.50kb (17.8%) /res/terminal/images-Can/LargeTile.scale-125_contrast-black.png -- 2.05kb -> 1.69kb (17.61%) /res/terminal/images-Can/Square150x150Logo.scale-150_contrast-black.png -- 1.34kb -> 1.11kb (17.54%) /res/terminal/images-Can/LockScreenLogo.scale-125_contrast-black.png -- 0.75kb -> 0.62kb (17.4%) /res/terminal/images-Can/Square44x44Logo.targetsize-30_contrast-black.png -- 0.75kb -> 0.62kb (17.4%) /res/terminal/images-Can/Square44x44Logo.targetsize-30_altform-unplated_contrast-black.png -- 0.75kb -> 0.62kb (17.4%) /res/terminal/images-Can/SplashScreen.scale-100_contrast-black.png -- 1.89kb -> 1.57kb (17.06%) /res/terminal/images-Can/Wide310x150Logo.scale-200_contrast-black.png -- 1.89kb -> 1.57kb (17.06%) /res/terminal/images-Can/LargeTile.scale-125_contrast-white.png -- 2.01kb -> 1.67kb (16.92%) /res/terminal/images-Can/LargeTile.scale-150_contrast-white.png -- 2.31kb -> 1.92kb (16.86%) /src/tools/MonarchPeasantPackage/Images/Wide310x150Logo.scale-200.png -- 3.13kb -> 2.61kb (16.67%) /res/terminal/images-Can/Square150x150Logo.scale-200_contrast-white.png -- 1.63kb -> 1.36kb (16.41%) /res/terminal/images-Can/Wide310x150Logo.scale-150_contrast-black.png -- 1.46kb -> 1.23kb (16.11%) /res/terminal/images-Can/LargeTile.scale-100_contrast-white.png -- 1.64kb -> 1.38kb (16.05%) /res/terminal/images-Can/StoreLogo.scale-200_contrast-black.png -- 1.11kb -> 0.93kb (16.04%) /res/terminal/images-Can/Square44x44Logo.scale-400_contrast-white.png -- 1.69kb -> 1.42kb (15.99%) /res/terminal/images-Can/Square44x44Logo.targetsize-96_altform-unplated_contrast-white.png -- 1.27kb -> 1.07kb (15.95%) /res/terminal/images-Can/Square44x44Logo.targetsize-96_contrast-white.png -- 1.27kb -> 1.07kb (15.95%) /res/terminal/images-Can/LockScreenLogo.scale-400_contrast-white.png -- 1.27kb -> 1.07kb (15.95%) /res/terminal/images-Can/LargeTile.scale-150_contrast-black.png -- 2.30kb -> 1.94kb (15.73%) /res/terminal/images-Can/Square150x150Logo.scale-125_contrast-black.png -- 1.18kb -> 0.99kb (15.73%) /res/terminal/images-Can/SplashScreen.scale-125_contrast-black.png -- 2.35kb -> 1.98kb (15.61%) /res/terminal/images-Can/SmallTile.scale-200_contrast-white.png -- 1.15kb -> 0.98kb (14.82%) /res/terminal/images-Can/SplashScreen.scale-125_contrast-white.png -- 2.31kb -> 1.97kb (14.81%) /doc/specs/microsoft#1564 - Settings UI/inheritance-locks.png -- 267.31kb -> 227.87kb (14.76%) /res/terminal/images-Can/SplashScreen.scale-150_contrast-white.png -- 2.71kb -> 2.31kb (14.75%) /doc/specs/microsoft#1564 - Settings UI/inheritance-text.png -- 268.16kb -> 228.64kb (14.74%) /doc/specs/microsoft#1564 - Settings UI/inheritance-dropdown.png -- 266.25kb -> 227.03kb (14.73%) /res/terminal/images-Can/Wide310x150Logo.scale-100_contrast-black.png -- 1.03kb -> 0.88kb (14.62%) /src/tools/MonarchPeasantPackage/Images/Square44x44Logo.scale-200.png -- 1.61kb -> 1.38kb (14.51%) /res/terminal/images-Can/Square150x150Logo.scale-400_contrast-black.png -- 3.04kb -> 2.60kb (14.44%) /res/terminal/images-Can/Square150x150Logo.scale-150_contrast-white.png -- 1.27kb -> 1.09kb (14.36%) /res/terminal/images-Can/Square150x150Logo.scale-100_contrast-black.png -- 0.93kb -> 0.80kb (14.26%) /res/terminal/images-Can/StoreLogo.scale-100_contrast-black.png -- 0.76kb -> 0.65kb (14.1%) /res/terminal/images-Can/SmallTile.scale-100_contrast-black.png -- 0.79kb -> 0.68kb (14.04%) /res/terminal/images-Can/StoreLogo.scale-100_contrast-white.png -- 0.76kb -> 0.65kb (14.03%) /res/terminal/images-Can/SplashScreen.scale-150_contrast-black.png -- 2.71kb -> 2.33kb (13.97%) /res/terminal/images-Can/SmallTile.scale-100_contrast-white.png -- 0.78kb -> 0.67kb (13.66%) /res/terminal/images-Can/LargeTile.scale-200_contrast-black.png -- 3.08kb -> 2.66kb (13.64%) /res/terminal/images-Can/Wide310x150Logo.scale-200_contrast-white.png -- 1.80kb -> 1.56kb (13.48%) /res/terminal/images-Can/SplashScreen.scale-100_contrast-white.png -- 1.80kb -> 1.56kb (13.48%) /res/terminal/images-Can/Square44x44Logo.targetsize-80_contrast-white.png -- 1.12kb -> 0.97kb (13.48%) /res/terminal/images-Can/Square44x44Logo.targetsize-80_altform-unplated_contrast-white.png -- 1.12kb -> 0.97kb (13.48%) /res/terminal/images-Can/StoreLogo.scale-200_contrast-white.png -- 1.07kb -> 0.93kb (13.19%) /res/terminal/images-Can/Square150x150Logo.scale-400_contrast-white.png -- 3.00kb -> 2.61kb (13.15%) /res/terminal/images-Can/LargeTile.scale-200_contrast-white.png -- 3.04kb -> 2.65kb (12.74%) /src/tools/MonarchPeasantPackage/Images/LockScreenLogo.scale-200.png -- 1.40kb -> 1.22kb (12.73%) /res/terminal/images-Can/Square44x44Logo.scale-200_contrast-black.png -- 1.01kb -> 0.88kb (12.69%) /res/terminal/images-Can/Wide310x150Logo.scale-125_contrast-black.png -- 1.29kb -> 1.13kb (12.58%) /res/terminal/images-Can/SmallTile.scale-150_contrast-black.png -- 1.00kb -> 0.88kb (12.57%) /res/terminal/images-Can/Square44x44Logo.scale-150_contrast-black.png -- 0.82kb -> 0.72kb (12.49%) /res/terminal/images-Can/SmallTile.scale-150_contrast-white.png -- 1.00kb -> 0.88kb (12.38%) /res/terminal/images-Can/Square44x44Logo.targetsize-32_contrast-black.png -- 0.67kb -> 0.58kb (12.19%) /res/terminal/images-Can/Square44x44Logo.targetsize-32_altform-unplated_contrast-black.png -- 0.67kb -> 0.58kb (12.19%) /res/terminal/images-Can/Square150x150Logo.scale-100_contrast-white.png -- 0.91kb -> 0.80kb (12.18%) /src/tools/MonarchPeasantPackage/Images/StoreLogo.png -- 1.42kb -> 1.25kb (12.13%) /res/terminal/Terminal_HC.svg -- 1.29kb -> 1.14kb (11.81%) /res/terminal/images-Can/Wide310x150Logo.scale-100_contrast-white.png -- 0.99kb -> 0.87kb (11.74%) /res/terminal/images-Can/Wide310x150Logo.scale-150_contrast-white.png -- 1.37kb -> 1.21kb (11.7%) /res/terminal/images-Can/StoreLogo.scale-125_contrast-white.png -- 0.86kb -> 0.76kb (11.62%) /res/terminal/images-Can/Square150x150Logo.scale-125_contrast-white.png -- 1.12kb -> 1.00kb (11.55%) /res/terminal/images-Can/SplashScreen.scale-200_contrast-black.png -- 3.81kb -> 3.38kb (11.26%) /res/terminal/images-Can/Wide310x150Logo.scale-400_contrast-black.png -- 3.81kb -> 3.38kb (11.26%) /res/terminal/images-Can/Square44x44Logo.targetsize-72_contrast-white.png -- 1.00kb -> 0.89kb (11.2%) /res/terminal/images-Can/Square44x44Logo.targetsize-72_altform-unplated_contrast-white.png -- 1.00kb -> 0.89kb (11.2%) /res/terminal/images-Can/StoreLogo.scale-150_contrast-black.png -- 0.96kb -> 0.85kb (11.13%) /res/terminal/images-Can/Square44x44Logo.scale-200_contrast-white.png -- 0.99kb -> 0.88kb (10.89%) /res/terminal/images-Can/SmallTile.scale-125_contrast-white.png -- 0.88kb -> 0.79kb (10.84%) /res/terminal/images-Can/SmallTile.scale-125_contrast-black.png -- 0.88kb -> 0.79kb (10.82%) /res/terminal/images-Can/StoreLogo.scale-150_contrast-white.png -- 0.95kb -> 0.85kb (10.56%) /res/terminal/images-Can/Square44x44Logo.scale-150_contrast-white.png -- 0.81kb -> 0.72kb (10.51%) /res/terminal/images-Can/StoreLogo.scale-125_contrast-black.png -- 0.86kb -> 0.77kb (10.38%) /res/terminal/images-Can/Wide310x150Logo.scale-125_contrast-white.png -- 1.25kb -> 1.12kb (10.35%) /res/terminal/images-Can/Square44x44Logo.targetsize-36_altform-unplated_contrast-white.png -- 0.71kb -> 0.64kb (10.27%) /res/terminal/images-Can/LockScreenLogo.scale-150_contrast-white.png -- 0.71kb -> 0.64kb (10.27%) /res/terminal/images-Can/Square44x44Logo.targetsize-36_contrast-white.png -- 0.71kb -> 0.64kb (10.27%) /res/terminal/images-Can/Wide310x150Logo.scale-400_contrast-white.png -- 3.76kb -> 3.37kb (10.24%) /res/terminal/images-Can/SplashScreen.scale-200_contrast-white.png -- 3.76kb -> 3.37kb (10.24%) /src/tools/MonarchPeasantPackage/Images/Square150x150Logo.scale-200.png -- 2.87kb -> 2.58kb (9.94%) /res/terminal/images-Can/Square44x44Logo.targetsize-64_contrast-white.png -- 0.94kb -> 0.85kb (9.76%) /res/terminal/images-Can/Square44x44Logo.targetsize-64_altform-unplated_contrast-white.png -- 0.94kb -> 0.85kb (9.76%) /res/terminal/images-Can/Square44x44Logo.targetsize-48_altform-unplated_contrast-white.png -- 0.77kb -> 0.70kb (9.6%) /res/terminal/images-Can/LockScreenLogo.scale-200_contrast-white.png -- 0.77kb -> 0.70kb (9.6%) /res/terminal/images-Can/Square44x44Logo.targetsize-48_contrast-white.png -- 0.77kb -> 0.70kb (9.6%) /res/terminal/images-Can/Square44x44Logo.scale-125_contrast-black.png -- 0.76kb -> 0.69kb (9.42%) /res/terminal/images-Can/Square44x44Logo.scale-125_contrast-white.png -- 0.76kb -> 0.69kb (9.14%) /res/terminal/images-Can/Square44x44Logo.targetsize-60_contrast-white.png -- 0.93kb -> 0.85kb (9.13%) /res/terminal/images-Can/Square44x44Logo.targetsize-60_altform-unplated_contrast-white.png -- 0.93kb -> 0.85kb (9.13%) /res/terminal/images-Can/Square44x44Logo.targetsize-24_altform-unplated_contrast-black.png -- 0.58kb -> 0.53kb (9.08%) /res/terminal/images-Can/LockScreenLogo.scale-100_contrast-black.png -- 0.58kb -> 0.53kb (9.08%) /res/terminal/images-Can/Square44x44Logo.targetsize-24_contrast-black.png -- 0.58kb -> 0.53kb (9.08%) /res/terminal/images-Can/LargeTile.scale-400_contrast-black.png -- 6.99kb -> 6.36kb (9.02%) /res/terminal/images-Can/Square44x44Logo.scale-100_contrast-black.png -- 0.65kb -> 0.59kb (9%) /res/terminal/images-Can/LargeTile.scale-400_contrast-white.png -- 6.99kb -> 6.37kb (8.89%) /res/terminal/images-Can/Square44x44Logo.scale-100_contrast-white.png -- 0.65kb -> 0.60kb (8.81%) /res/terminal/images-Can/StoreLogo.scale-400.png -- 5.44kb -> 4.98kb (8.45%) /doc/specs/microsoft#4993 - Keyboard Selection/images/Y-Beam.png -- 88.24kb -> 81.27kb (7.9%) /res/terminal/images-Can/LockScreenLogo.scale-100_contrast-white.png -- 0.57kb -> 0.53kb (7.85%) /res/terminal/images-Can/Square44x44Logo.targetsize-24_altform-unplated_contrast-white.png -- 0.57kb -> 0.53kb (7.85%) /res/terminal/images-Can/Square44x44Logo.targetsize-24_contrast-white.png -- 0.57kb -> 0.53kb (7.85%) /doc/specs/microsoft#4993 - Keyboard Selection/images/Split-Y-Beam.png -- 88.30kb -> 81.41kb (7.81%) /doc/specs/microsoft#4993 - Keyboard Selection/images/Half-Y-Beam.png -- 88.17kb -> 81.33kb (7.76%) /res/terminal/images-Can/SmallTile.scale-400.png -- 5.77kb -> 5.33kb (7.58%) /res/terminal/images-Can/Square44x44Logo.targetsize-32_altform-unplated_contrast-white.png -- 0.63kb -> 0.58kb (7.42%) /res/terminal/images-Can/Square44x44Logo.targetsize-32_contrast-white.png -- 0.63kb -> 0.58kb (7.42%) /doc/specs/microsoft#6900 - Actions Page/edit-keys.png -- 142.53kb -> 131.98kb (7.4%) /doc/specs/microsoft#6900 - Actions Page/add-click.png -- 142.43kb -> 131.96kb (7.35%) /doc/specs/microsoft#6900 - Actions Page/edit-click.png -- 142.54kb -> 132.08kb (7.34%) /res/terminal/images-Can/Square150x150Logo.scale-400.png -- 8.94kb -> 8.31kb (7.03%) /res/terminal/images-Can/Square44x44Logo.targetsize-40_contrast-white.png -- 0.72kb -> 0.67kb (7.02%) /res/terminal/images-Can/Square44x44Logo.targetsize-40_altform-unplated_contrast-white.png -- 0.72kb -> 0.67kb (7.02%) /res/terminal/images-Can/LargeTile.scale-200.png -- 9.03kb -> 8.41kb (6.92%) /src/tools/MonarchPeasantPackage/Images/Square44x44Logo.targetsize-24_altform-unplated.png -- 1.23kb -> 1.14kb (6.85%) /doc/specs/microsoft#6900 - Actions Page/add-keys.png -- 140.07kb -> 130.48kb (6.84%) /res/terminal/images-Can/SmallTile.scale-200.png -- 2.88kb -> 2.68kb (6.76%) /doc/specs/drafts/microsoft#3327 - Application Theming/whole-window-background-000.png -- 2,005.26kb -> 1,872.15kb (6.64%) /res/terminal/images-Can/LargeTile.scale-150.png -- 6.45kb -> 6.03kb (6.56%) /res/terminal/images-Can/LargeTile.scale-100.png -- 4.10kb -> 3.84kb (6.45%) /res/terminal/images-Can/Square44x44Logo.targetsize-256.png -- 8.99kb -> 8.41kb (6.45%) /res/terminal/images-Can/Square44x44Logo.targetsize-256_altform-unplated.png -- 8.99kb -> 8.41kb (6.45%) /res/terminal/images-Can/Square44x44Logo.scale-400.png -- 4.71kb -> 4.41kb (6.41%) /doc/specs/drafts/microsoft#3327 - Application Theming/tab-buttons-000.png -- 34.95kb -> 32.71kb (6.41%) /res/terminal/images-Can/Square150x150Logo.scale-200.png -- 4.07kb -> 3.81kb (6.31%) /res/terminal/images-Can/LargeTile.scale-125.png -- 5.26kb -> 4.94kb (6.21%) /res/terminal/Terminal_Dev_HC.svg -- 2.54kb -> 2.38kb (6.15%) /res/terminal/images-Can/LargeTile.scale-400.png -- 21.22kb -> 19.94kb (6.01%) /res/terminal/images-Can/Square44x44Logo.targetsize-20_contrast-white.png -- 0.53kb -> 0.50kb (5.49%) /res/terminal/images-Can/Square44x44Logo.targetsize-20_altform-unplated_contrast-white.png -- 0.53kb -> 0.50kb (5.49%) /res/terminal/images-Can/SplashScreen.scale-400_contrast-white.png -- 9.78kb -> 9.26kb (5.33%) /res/terminal/images-Can/Square44x44Logo.targetsize-30_altform-unplated_contrast-white.png -- 0.66kb -> 0.63kb (5.15%) /res/terminal/images-Can/LockScreenLogo.scale-125_contrast-white.png -- 0.66kb -> 0.63kb (5.15%) /res/terminal/images-Can/Square44x44Logo.targetsize-30_contrast-white.png -- 0.66kb -> 0.63kb (5.15%) /res/terminal/images-Can/SplashScreen.scale-150.png -- 7.30kb -> 6.93kb (5.07%) /res/terminal/images-Can/Square150x150Logo.scale-150.png -- 3.08kb -> 2.92kb (5.02%) /res/terminal/images-Can/SplashScreen.scale-125.png -- 5.92kb -> 5.62kb (4.99%) /res/terminal/images-Can/Wide310x150Logo.scale-200.png -- 4.50kb -> 4.29kb (4.68%) /res/terminal/images-Can/SplashScreen.scale-100.png -- 4.50kb -> 4.29kb (4.68%) /res/terminal/images-Can/SplashScreen.scale-400_contrast-black.png -- 9.80kb -> 9.35kb (4.57%) /res/terminal/images-Can/StoreLogo.scale-200.png -- 2.68kb -> 2.56kb (4.44%) /res/terminal/images-Can/Square44x44Logo.targetsize-16_contrast-white.png -- 0.47kb -> 0.45kb (4.12%) /res/terminal/images-Can/Square44x44Logo.targetsize-16_altform-unplated_contrast-white.png -- 0.47kb -> 0.45kb (4.12%) /res/terminal/images-Can/SplashScreen.scale-400.png -- 27.21kb -> 26.09kb (4.12%) /res/terminal/images-Can/Wide310x150Logo.scale-400.png -- 10.60kb -> 10.17kb (3.98%) /res/terminal/images-Can/SplashScreen.scale-200.png -- 10.60kb -> 10.17kb (3.98%) /res/terminal/images-Can/Wide310x150Logo.scale-150.png -- 3.35kb -> 3.22kb (3.91%) /res/terminal/Terminal.svg -- 5.57kb -> 5.37kb (3.66%) /res/terminal/Terminal_Can_HC.svg -- 2.82kb -> 2.71kb (3.64%) /res/terminal/Terminal_Pre_HC.svg -- 2.82kb -> 2.71kb (3.64%) /res/terminal/images-Can/Wide310x150Logo.scale-100.png -- 1.86kb -> 1.83kb (1.94%) /res/terminal/images-Can/Square44x44Logo.targetsize-96.png -- 3.11kb -> 3.06kb (1.38%) /res/terminal/images-Can/LockScreenLogo.scale-400.png -- 3.11kb -> 3.06kb (1.38%) /res/terminal/images-Can/Square44x44Logo.targetsize-96_altform-unplated.png -- 3.11kb -> 3.06kb (1.38%) /res/terminal/images-Can/Wide310x150Logo.scale-125.png -- 2.38kb -> 2.36kb (1.07%) /res/terminal/images-Can/Square150x150Logo.scale-125.png -- 2.27kb -> 2.25kb (0.95%) /res/terminal/images-Can/SmallTile.scale-150.png -- 1.94kb -> 1.94kb (0.05%) Signed-off-by: ImgBotApp <ImgBotHelp@gmail.com>
This adds a snippets pane, which can be a static pane with all your snippets (`sendInput` actions) in it. (See #17329) This pane has a treeview with these actions in it, that we can filter with a textbox at the top. Play buttons next to entries make it quick to run the command you found. Bound in the default actions with ```json { "command": { "action": "splitPane", "type": "snippets" }, "id": "Terminal.OpenSnippetsPane", "name": { "key": "SnippetsPaneCommandName" } }, ``` re: #1595 ---- TODO, from 06-04 bug bash * [x] Snippets pane doesn't display some "no snippets found" text if there aren't any yet * [x] open snippets pane; find a "send input"; click the play button on it; input is sent to active pane; begin typing * [x] I can open an infinite amount of suggestions panes * ~I'm closing this as by-design for now at least. Nothing stopping anyone from opening infinite of any kind of pane.~ * ~This would require kind of a lot of refactoring in this PR to mark a kind of pane as being a singleton or singleton-per-tab~ * Okay everyone hates infinite suggestions panes, so I got rid of that * [x] Ctrl+Shift+W should still work in the snippets pane even if focus isn't in textbox * [ ] open snippets pane; click on text box; press TAB key; * [ ] If you press TAB again, I have no idea where focus went * [x] some previews don't work. Like `^c` (`"input": "\u0003"`) * [x] nested items just give you a bit of extra space for no reason and it looks a little awkward * [x] UI Suggestion: add padding on the right side * [ ] [Accessibility] Narrator says "Clear buffer; Suggestions found 132" when you open the snippets pane - Note: this is probably Narrator reading out the command palette (since that's where I opened it from) - We should probably expect something like "Snippets", then (assuming focus is thrown into text box) "Type to filter snippets" or something like that
*Total -- 12,881.26kb -> 10,033.34kb (22.11%) /doc/specs/microsoft#1595 - Suggestions UI/img/shell-completion-tooltip-000.png -- 12.33kb -> 3.46kb (71.94%) /doc/specs/drafts/microsoft#642 - Buffer Exporting and Logging/SecureCRT-logging-settings.png -- 57.54kb -> 21.91kb (61.93%) /doc/specs/microsoft#5000 - Process Model 2.0/figure-002.png -- 36.77kb -> 15.46kb (57.94%) /doc/specs/microsoft#5000 - Process Model 2.0/figure-001.png -- 24.91kb -> 10.50kb (57.87%) /doc/specs/microsoft#5000 - Process Model 2.0/figure-003.png -- 52.36kb -> 22.23kb (57.55%) /doc/specs/drafts/microsoft#642 - Buffer Exporting and Logging/PuTTY-logging-settings.png -- 13.71kb -> 6.06kb (55.76%) /doc/specs/microsoft#5000 - Process Model 2.0/mixed-elevation.png -- 44.33kb -> 19.66kb (55.65%) /doc/specs/microsoft#5000 - Process Model 2.0/drop-tab-on-existing-window.png -- 54.46kb -> 24.61kb (54.81%) /doc/specs/microsoft#5000 - Process Model 2.0/tear-out-tab.png -- 46.50kb -> 21.75kb (53.22%) /doc/specs/drafts/microsoft#642 - Buffer Exporting and Logging/ConEmu-logging-settings.png -- 72.54kb -> 38.55kb (46.85%) /doc/specs/microsoft#5000 - Process Model 2.0/UAC-shield-in-titlebar.png -- 565.40kb -> 308.13kb (45.5%) /doc/specs/microsoft#1595 - Suggestions UI/img/developers-already-do-this-000.png -- 43.26kb -> 24.14kb (44.2%) /res/terminal/images-Can/Square44x44Logo.targetsize-256_contrast-black.png -- 3.97kb -> 2.23kb (43.75%) /res/terminal/images-Can/Square44x44Logo.targetsize-256_altform-unplated_contrast-black.png -- 3.97kb -> 2.23kb (43.75%) /doc/specs/drafts/microsoft#3327 - Application Theming/AcrylicInTitlebar.png -- 400.74kb -> 239.31kb (40.28%) /doc/specs/microsoft#1595 - Suggestions UI/img/vscode-shell-integration-gutter-mark.png -- 37.92kb -> 22.94kb (39.49%) /doc/specs/microsoft#11000 - Marks/vscode-shell-integration-gutter-mark.png -- 37.92kb -> 22.94kb (39.49%) /doc/specs/microsoft#16599 - Quick Fix/vscode-copilot.png -- 19.30kb -> 12.00kb (37.85%) /doc/specs/drafts/microsoft#3327 - Application Theming/AcrylicTerminalBackgroundInTitlebar.png -- 779.06kb -> 484.52kb (37.81%) /doc/specs/microsoft#1564 - Settings UI/copy-settings-2.png -- 362.41kb -> 225.56kb (37.76%) /src/tools/MonarchPeasantPackage/Images/SplashScreen.scale-200.png -- 7.52kb -> 4.71kb (37.4%) /res/terminal/images-Can/LockScreenLogo.scale-400_contrast-black.png -- 1.68kb -> 1.06kb (37.13%) /res/terminal/images-Can/Square44x44Logo.targetsize-96_contrast-black.png -- 1.68kb -> 1.06kb (37.13%) /res/terminal/images-Can/Square44x44Logo.targetsize-96_altform-unplated_contrast-black.png -- 1.68kb -> 1.06kb (37.13%) /res/terminal/Terminal_Dev.svg -- 12.06kb -> 7.63kb (36.71%) /res/terminal/images-Can/Square44x44Logo.targetsize-80_altform-unplated_contrast-black.png -- 1.53kb -> 0.97kb (36.21%) /res/terminal/images-Can/Square44x44Logo.targetsize-80_contrast-black.png -- 1.53kb -> 0.97kb (36.21%) /res/terminal/Terminal_Can.svg -- 12.41kb -> 7.98kb (35.68%) /doc/specs/microsoft#1595 - Suggestions UI/img/jupyter-notebooks-example.png -- 35.01kb -> 22.83kb (34.77%) /res/terminal/Terminal_Pre.svg -- 13.01kb -> 8.59kb (34.02%) /doc/specs/microsoft#6899 - Action IDs/data-mockup-actions-ids-keys-maps.png -- 171.77kb -> 113.38kb (33.99%) /doc/specs/microsoft#1564 - Settings UI/copy-settings-1.png -- 364.43kb -> 241.25kb (33.8%) /doc/specs/drafts/microsoft#642 - Buffer Exporting and Logging/securecrt-context-menu.png -- 41.83kb -> 27.98kb (33.1%) /doc/specs/drafts/microsoft#2634 - Broadcast Input/broadcast-segoe-icon.png -- 3.01kb -> 2.03kb (32.6%) /doc/specs/microsoft#1595 - Suggestions UI/img/GitHub-open-with.png -- 44.96kb -> 30.46kb (32.24%) /res/terminal/images-Can/Square44x44Logo.targetsize-64_altform-unplated_contrast-black.png -- 1.23kb -> 0.85kb (31.11%) /res/terminal/images-Can/Square44x44Logo.targetsize-64_contrast-black.png -- 1.23kb -> 0.85kb (31.11%) /res/terminal/images-Can/Square44x44Logo.targetsize-72_altform-unplated_contrast-black.png -- 1.29kb -> 0.89kb (30.94%) /res/terminal/images-Can/Square44x44Logo.targetsize-72_contrast-black.png -- 1.29kb -> 0.89kb (30.94%) /res/terminal/images-Can/Square44x44Logo.targetsize-60_altform-unplated_contrast-black.png -- 1.21kb -> 0.85kb (29.74%) /res/terminal/images-Can/Square44x44Logo.targetsize-60_contrast-black.png -- 1.21kb -> 0.85kb (29.74%) /doc/specs/microsoft#5000 - Process Model 2.0/wt-session-0.png -- 92.77kb -> 65.23kb (29.68%) /doc/specs/microsoft#5000 - Process Model 2.0/auto-glom-wt-exe.png -- 82.96kb -> 59.13kb (28.72%) /doc/specs/drafts/microsoft#3327 - Application Theming/Tab-Matches-Terminal-Color-000.png -- 8.56kb -> 6.15kb (28.15%) /doc/specs/microsoft#5000 - Process Model 2.0/single-instance-mode-cwd.png -- 52.81kb -> 38.39kb (27.31%) /doc/specs/microsoft#1595 - Suggestions UI/img/inline-blocks-000.png -- 48.62kb -> 35.40kb (27.19%) /doc/specs/microsoft#11000 - Marks/ftcs-diagram.png -- 200.97kb -> 147.92kb (26.39%) /res/terminal/images-Can/LockScreenLogo.scale-200_contrast-black.png -- 0.94kb -> 0.69kb (26.17%) /res/terminal/images-Can/Square44x44Logo.targetsize-48_altform-unplated_contrast-black.png -- 0.94kb -> 0.69kb (26.17%) /res/terminal/images-Can/Square44x44Logo.targetsize-48_contrast-black.png -- 0.94kb -> 0.69kb (26.17%) /doc/specs/microsoft#1595 - Suggestions UI/img/Copilot-in-cmdpal.png -- 100.52kb -> 75.56kb (24.83%) /doc/specs/microsoft#653 - Quake Mode/tray-icon-000.png -- 19.46kb -> 14.69kb (24.53%) /res/terminal/images-Can/LockScreenLogo.scale-150_contrast-black.png -- 0.82kb -> 0.64kb (21.85%) /res/terminal/images-Can/Square44x44Logo.targetsize-36_altform-unplated_contrast-black.png -- 0.82kb -> 0.64kb (21.85%) /res/terminal/images-Can/Square44x44Logo.targetsize-36_contrast-black.png -- 0.82kb -> 0.64kb (21.85%) /res/terminal/images-Can/Square44x44Logo.targetsize-256_contrast-white.png -- 2.94kb -> 2.31kb (21.37%) /res/terminal/images-Can/Square44x44Logo.targetsize-256_altform-unplated_contrast-white.png -- 2.94kb -> 2.31kb (21.37%) /doc/specs/drafts/microsoft#3327 - Application Theming/mica-in-control-000.png -- 904.90kb -> 711.77kb (21.34%) /res/terminal/images-Can/Square44x44Logo.targetsize-40_contrast-black.png -- 0.85kb -> 0.67kb (20.99%) /res/terminal/images-Can/Square44x44Logo.targetsize-40_altform-unplated_contrast-black.png -- 0.85kb -> 0.67kb (20.99%) /samples/PixelShaders/Screenshots/GraphCosine.png -- 115.72kb -> 91.74kb (20.72%) /res/terminal/images-Can/Square150x150Logo.scale-200_contrast-black.png -- 1.72kb -> 1.37kb (20.24%) /res/terminal/images-Can/StoreLogo.scale-400_contrast-black.png -- 1.86kb -> 1.49kb (20.15%) /res/terminal/images-Can/LargeTile.scale-100_contrast-black.png -- 1.74kb -> 1.39kb (20.07%) /doc/specs/microsoft#1595 - Suggestions UI/img/mockup-000.png -- 867.79kb -> 695.02kb (19.91%) /res/terminal/images-Can/Square44x44Logo.scale-400_contrast-black.png -- 1.76kb -> 1.41kb (19.86%) /res/terminal/images-Can/SmallTile.scale-400_contrast-white.png -- 2.05kb -> 1.64kb (19.81%) /res/terminal/images-Can/SmallTile.scale-200_contrast-black.png -- 1.21kb -> 0.97kb (19.26%) /src/tools/MonarchPeasantSample/monarch-peasant-sample-000.gif -- 2,671.70kb -> 2,160.44kb (19.14%) /doc/specs/microsoft#1564 - Settings UI/add-new-profile.png -- 222.16kb -> 180.46kb (18.77%) /res/terminal/images-Can/SmallTile.scale-400_contrast-black.png -- 2.03kb -> 1.66kb (18.4%) /res/terminal/images-Can/StoreLogo.scale-400_contrast-white.png -- 1.84kb -> 1.50kb (18.24%) /doc/specs/microsoft#4993 - Keyboard Selection/images/CopyModeFlowchart.png -- 23.72kb -> 19.50kb (17.8%) /res/terminal/images-Can/LargeTile.scale-125_contrast-black.png -- 2.05kb -> 1.69kb (17.61%) /res/terminal/images-Can/Square150x150Logo.scale-150_contrast-black.png -- 1.34kb -> 1.11kb (17.54%) /res/terminal/images-Can/LockScreenLogo.scale-125_contrast-black.png -- 0.75kb -> 0.62kb (17.4%) /res/terminal/images-Can/Square44x44Logo.targetsize-30_contrast-black.png -- 0.75kb -> 0.62kb (17.4%) /res/terminal/images-Can/Square44x44Logo.targetsize-30_altform-unplated_contrast-black.png -- 0.75kb -> 0.62kb (17.4%) /res/terminal/images-Can/SplashScreen.scale-100_contrast-black.png -- 1.89kb -> 1.57kb (17.06%) /res/terminal/images-Can/Wide310x150Logo.scale-200_contrast-black.png -- 1.89kb -> 1.57kb (17.06%) /res/terminal/images-Can/LargeTile.scale-125_contrast-white.png -- 2.01kb -> 1.67kb (16.92%) /res/terminal/images-Can/LargeTile.scale-150_contrast-white.png -- 2.31kb -> 1.92kb (16.86%) /src/tools/MonarchPeasantPackage/Images/Wide310x150Logo.scale-200.png -- 3.13kb -> 2.61kb (16.67%) /res/terminal/images-Can/Square150x150Logo.scale-200_contrast-white.png -- 1.63kb -> 1.36kb (16.41%) /res/terminal/images-Can/Wide310x150Logo.scale-150_contrast-black.png -- 1.46kb -> 1.23kb (16.11%) /res/terminal/images-Can/LargeTile.scale-100_contrast-white.png -- 1.64kb -> 1.38kb (16.05%) /res/terminal/images-Can/StoreLogo.scale-200_contrast-black.png -- 1.11kb -> 0.93kb (16.04%) /res/terminal/images-Can/Square44x44Logo.scale-400_contrast-white.png -- 1.69kb -> 1.42kb (15.99%) /res/terminal/images-Can/Square44x44Logo.targetsize-96_altform-unplated_contrast-white.png -- 1.27kb -> 1.07kb (15.95%) /res/terminal/images-Can/Square44x44Logo.targetsize-96_contrast-white.png -- 1.27kb -> 1.07kb (15.95%) /res/terminal/images-Can/LockScreenLogo.scale-400_contrast-white.png -- 1.27kb -> 1.07kb (15.95%) /res/terminal/images-Can/LargeTile.scale-150_contrast-black.png -- 2.30kb -> 1.94kb (15.73%) /res/terminal/images-Can/Square150x150Logo.scale-125_contrast-black.png -- 1.18kb -> 0.99kb (15.73%) /res/terminal/images-Can/SplashScreen.scale-125_contrast-black.png -- 2.35kb -> 1.98kb (15.61%) /res/terminal/images-Can/SmallTile.scale-200_contrast-white.png -- 1.15kb -> 0.98kb (14.82%) /res/terminal/images-Can/SplashScreen.scale-125_contrast-white.png -- 2.31kb -> 1.97kb (14.81%) /doc/specs/microsoft#1564 - Settings UI/inheritance-locks.png -- 267.31kb -> 227.87kb (14.76%) /res/terminal/images-Can/SplashScreen.scale-150_contrast-white.png -- 2.71kb -> 2.31kb (14.75%) /doc/specs/microsoft#1564 - Settings UI/inheritance-text.png -- 268.16kb -> 228.64kb (14.74%) /doc/specs/microsoft#1564 - Settings UI/inheritance-dropdown.png -- 266.25kb -> 227.03kb (14.73%) /res/terminal/images-Can/Wide310x150Logo.scale-100_contrast-black.png -- 1.03kb -> 0.88kb (14.62%) /src/tools/MonarchPeasantPackage/Images/Square44x44Logo.scale-200.png -- 1.61kb -> 1.38kb (14.51%) /res/terminal/images-Can/Square150x150Logo.scale-400_contrast-black.png -- 3.04kb -> 2.60kb (14.44%) /res/terminal/images-Can/Square150x150Logo.scale-150_contrast-white.png -- 1.27kb -> 1.09kb (14.36%) /res/terminal/images-Can/Square150x150Logo.scale-100_contrast-black.png -- 0.93kb -> 0.80kb (14.26%) /res/terminal/images-Can/StoreLogo.scale-100_contrast-black.png -- 0.76kb -> 0.65kb (14.1%) /res/terminal/images-Can/SmallTile.scale-100_contrast-black.png -- 0.79kb -> 0.68kb (14.04%) /res/terminal/images-Can/StoreLogo.scale-100_contrast-white.png -- 0.76kb -> 0.65kb (14.03%) /res/terminal/images-Can/SplashScreen.scale-150_contrast-black.png -- 2.71kb -> 2.33kb (13.97%) /res/terminal/images-Can/SmallTile.scale-100_contrast-white.png -- 0.78kb -> 0.67kb (13.66%) /res/terminal/images-Can/LargeTile.scale-200_contrast-black.png -- 3.08kb -> 2.66kb (13.64%) /res/terminal/images-Can/Wide310x150Logo.scale-200_contrast-white.png -- 1.80kb -> 1.56kb (13.48%) /res/terminal/images-Can/SplashScreen.scale-100_contrast-white.png -- 1.80kb -> 1.56kb (13.48%) /res/terminal/images-Can/Square44x44Logo.targetsize-80_contrast-white.png -- 1.12kb -> 0.97kb (13.48%) /res/terminal/images-Can/Square44x44Logo.targetsize-80_altform-unplated_contrast-white.png -- 1.12kb -> 0.97kb (13.48%) /res/terminal/images-Can/StoreLogo.scale-200_contrast-white.png -- 1.07kb -> 0.93kb (13.19%) /res/terminal/images-Can/Square150x150Logo.scale-400_contrast-white.png -- 3.00kb -> 2.61kb (13.15%) /res/terminal/images-Can/LargeTile.scale-200_contrast-white.png -- 3.04kb -> 2.65kb (12.74%) /src/tools/MonarchPeasantPackage/Images/LockScreenLogo.scale-200.png -- 1.40kb -> 1.22kb (12.73%) /res/terminal/images-Can/Square44x44Logo.scale-200_contrast-black.png -- 1.01kb -> 0.88kb (12.69%) /res/terminal/images-Can/Wide310x150Logo.scale-125_contrast-black.png -- 1.29kb -> 1.13kb (12.58%) /res/terminal/images-Can/SmallTile.scale-150_contrast-black.png -- 1.00kb -> 0.88kb (12.57%) /res/terminal/images-Can/Square44x44Logo.scale-150_contrast-black.png -- 0.82kb -> 0.72kb (12.49%) /res/terminal/images-Can/SmallTile.scale-150_contrast-white.png -- 1.00kb -> 0.88kb (12.38%) /res/terminal/images-Can/Square44x44Logo.targetsize-32_contrast-black.png -- 0.67kb -> 0.58kb (12.19%) /res/terminal/images-Can/Square44x44Logo.targetsize-32_altform-unplated_contrast-black.png -- 0.67kb -> 0.58kb (12.19%) /res/terminal/images-Can/Square150x150Logo.scale-100_contrast-white.png -- 0.91kb -> 0.80kb (12.18%) /src/tools/MonarchPeasantPackage/Images/StoreLogo.png -- 1.42kb -> 1.25kb (12.13%) /res/terminal/Terminal_HC.svg -- 1.29kb -> 1.14kb (11.81%) /res/terminal/images-Can/Wide310x150Logo.scale-100_contrast-white.png -- 0.99kb -> 0.87kb (11.74%) /res/terminal/images-Can/Wide310x150Logo.scale-150_contrast-white.png -- 1.37kb -> 1.21kb (11.7%) /res/terminal/images-Can/StoreLogo.scale-125_contrast-white.png -- 0.86kb -> 0.76kb (11.62%) /res/terminal/images-Can/Square150x150Logo.scale-125_contrast-white.png -- 1.12kb -> 1.00kb (11.55%) /res/terminal/images-Can/SplashScreen.scale-200_contrast-black.png -- 3.81kb -> 3.38kb (11.26%) /res/terminal/images-Can/Wide310x150Logo.scale-400_contrast-black.png -- 3.81kb -> 3.38kb (11.26%) /res/terminal/images-Can/Square44x44Logo.targetsize-72_contrast-white.png -- 1.00kb -> 0.89kb (11.2%) /res/terminal/images-Can/Square44x44Logo.targetsize-72_altform-unplated_contrast-white.png -- 1.00kb -> 0.89kb (11.2%) /res/terminal/images-Can/StoreLogo.scale-150_contrast-black.png -- 0.96kb -> 0.85kb (11.13%) /res/terminal/images-Can/Square44x44Logo.scale-200_contrast-white.png -- 0.99kb -> 0.88kb (10.89%) /res/terminal/images-Can/SmallTile.scale-125_contrast-white.png -- 0.88kb -> 0.79kb (10.84%) /res/terminal/images-Can/SmallTile.scale-125_contrast-black.png -- 0.88kb -> 0.79kb (10.82%) /res/terminal/images-Can/StoreLogo.scale-150_contrast-white.png -- 0.95kb -> 0.85kb (10.56%) /res/terminal/images-Can/Square44x44Logo.scale-150_contrast-white.png -- 0.81kb -> 0.72kb (10.51%) /res/terminal/images-Can/StoreLogo.scale-125_contrast-black.png -- 0.86kb -> 0.77kb (10.38%) /res/terminal/images-Can/Wide310x150Logo.scale-125_contrast-white.png -- 1.25kb -> 1.12kb (10.35%) /res/terminal/images-Can/Square44x44Logo.targetsize-36_altform-unplated_contrast-white.png -- 0.71kb -> 0.64kb (10.27%) /res/terminal/images-Can/Square44x44Logo.targetsize-36_contrast-white.png -- 0.71kb -> 0.64kb (10.27%) /res/terminal/images-Can/LockScreenLogo.scale-150_contrast-white.png -- 0.71kb -> 0.64kb (10.27%) /res/terminal/images-Can/Wide310x150Logo.scale-400_contrast-white.png -- 3.76kb -> 3.37kb (10.24%) /res/terminal/images-Can/SplashScreen.scale-200_contrast-white.png -- 3.76kb -> 3.37kb (10.24%) /src/tools/MonarchPeasantPackage/Images/Square150x150Logo.scale-200.png -- 2.87kb -> 2.58kb (9.94%) /res/terminal/images-Can/Square44x44Logo.targetsize-64_contrast-white.png -- 0.94kb -> 0.85kb (9.76%) /res/terminal/images-Can/Square44x44Logo.targetsize-64_altform-unplated_contrast-white.png -- 0.94kb -> 0.85kb (9.76%) /res/terminal/images-Can/Square44x44Logo.targetsize-48_altform-unplated_contrast-white.png -- 0.77kb -> 0.70kb (9.6%) /res/terminal/images-Can/Square44x44Logo.targetsize-48_contrast-white.png -- 0.77kb -> 0.70kb (9.6%) /res/terminal/images-Can/LockScreenLogo.scale-200_contrast-white.png -- 0.77kb -> 0.70kb (9.6%) /res/terminal/images-Can/Square44x44Logo.scale-125_contrast-black.png -- 0.76kb -> 0.69kb (9.42%) /res/terminal/images-Can/Square44x44Logo.scale-125_contrast-white.png -- 0.76kb -> 0.69kb (9.14%) /res/terminal/images-Can/Square44x44Logo.targetsize-60_contrast-white.png -- 0.93kb -> 0.85kb (9.13%) /res/terminal/images-Can/Square44x44Logo.targetsize-60_altform-unplated_contrast-white.png -- 0.93kb -> 0.85kb (9.13%) /res/terminal/images-Can/Square44x44Logo.targetsize-24_altform-unplated_contrast-black.png -- 0.58kb -> 0.53kb (9.08%) /res/terminal/images-Can/LockScreenLogo.scale-100_contrast-black.png -- 0.58kb -> 0.53kb (9.08%) /res/terminal/images-Can/Square44x44Logo.targetsize-24_contrast-black.png -- 0.58kb -> 0.53kb (9.08%) /res/terminal/images-Can/LargeTile.scale-400_contrast-black.png -- 6.99kb -> 6.36kb (9.02%) /res/terminal/images-Can/Square44x44Logo.scale-100_contrast-black.png -- 0.65kb -> 0.59kb (9%) /res/terminal/images-Can/LargeTile.scale-400_contrast-white.png -- 6.99kb -> 6.37kb (8.89%) /res/terminal/images-Can/Square44x44Logo.scale-100_contrast-white.png -- 0.65kb -> 0.60kb (8.81%) /res/terminal/images-Can/StoreLogo.scale-400.png -- 5.44kb -> 4.98kb (8.45%) /doc/specs/microsoft#4993 - Keyboard Selection/images/Y-Beam.png -- 88.24kb -> 81.27kb (7.9%) /res/terminal/images-Can/Square44x44Logo.targetsize-24_altform-unplated_contrast-white.png -- 0.57kb -> 0.53kb (7.85%) /res/terminal/images-Can/LockScreenLogo.scale-100_contrast-white.png -- 0.57kb -> 0.53kb (7.85%) /res/terminal/images-Can/Square44x44Logo.targetsize-24_contrast-white.png -- 0.57kb -> 0.53kb (7.85%) /doc/specs/microsoft#4993 - Keyboard Selection/images/Split-Y-Beam.png -- 88.30kb -> 81.41kb (7.81%) /doc/specs/microsoft#4993 - Keyboard Selection/images/Half-Y-Beam.png -- 88.17kb -> 81.33kb (7.76%) /res/terminal/images-Can/SmallTile.scale-400.png -- 5.77kb -> 5.33kb (7.58%) /res/terminal/images-Can/Square44x44Logo.targetsize-32_altform-unplated_contrast-white.png -- 0.63kb -> 0.58kb (7.42%) /res/terminal/images-Can/Square44x44Logo.targetsize-32_contrast-white.png -- 0.63kb -> 0.58kb (7.42%) /doc/specs/microsoft#6900 - Actions Page/edit-keys.png -- 142.53kb -> 131.98kb (7.4%) /doc/specs/microsoft#6900 - Actions Page/add-click.png -- 142.43kb -> 131.96kb (7.35%) /doc/specs/microsoft#6900 - Actions Page/edit-click.png -- 142.54kb -> 132.08kb (7.34%) /res/terminal/images-Can/Square150x150Logo.scale-400.png -- 8.94kb -> 8.31kb (7.03%) /res/terminal/images-Can/Square44x44Logo.targetsize-40_contrast-white.png -- 0.72kb -> 0.67kb (7.02%) /res/terminal/images-Can/Square44x44Logo.targetsize-40_altform-unplated_contrast-white.png -- 0.72kb -> 0.67kb (7.02%) /res/terminal/images-Can/LargeTile.scale-200.png -- 9.03kb -> 8.41kb (6.92%) /src/tools/MonarchPeasantPackage/Images/Square44x44Logo.targetsize-24_altform-unplated.png -- 1.23kb -> 1.14kb (6.85%) /doc/specs/microsoft#6900 - Actions Page/add-keys.png -- 140.07kb -> 130.48kb (6.84%) /res/terminal/images-Can/SmallTile.scale-200.png -- 2.88kb -> 2.68kb (6.76%) /doc/specs/drafts/microsoft#3327 - Application Theming/whole-window-background-000.png -- 2,005.26kb -> 1,872.15kb (6.64%) /res/terminal/images-Can/LargeTile.scale-150.png -- 6.45kb -> 6.03kb (6.56%) /res/terminal/images-Can/LargeTile.scale-100.png -- 4.10kb -> 3.84kb (6.45%) /res/terminal/images-Can/Square44x44Logo.targetsize-256.png -- 8.99kb -> 8.41kb (6.45%) /res/terminal/images-Can/Square44x44Logo.targetsize-256_altform-unplated.png -- 8.99kb -> 8.41kb (6.45%) /res/terminal/images-Can/Square44x44Logo.scale-400.png -- 4.71kb -> 4.41kb (6.41%) /doc/specs/drafts/microsoft#3327 - Application Theming/tab-buttons-000.png -- 34.95kb -> 32.71kb (6.41%) /res/terminal/images-Can/Square150x150Logo.scale-200.png -- 4.07kb -> 3.81kb (6.31%) /res/terminal/images-Can/LargeTile.scale-125.png -- 5.26kb -> 4.94kb (6.21%) /res/terminal/Terminal_Dev_HC.svg -- 2.54kb -> 2.38kb (6.15%) /res/terminal/images-Can/LargeTile.scale-400.png -- 21.22kb -> 19.94kb (6.01%) /res/terminal/images-Can/Square44x44Logo.targetsize-20_altform-unplated_contrast-white.png -- 0.53kb -> 0.50kb (5.49%) /res/terminal/images-Can/Square44x44Logo.targetsize-20_contrast-white.png -- 0.53kb -> 0.50kb (5.49%) /res/terminal/images-Can/SplashScreen.scale-400_contrast-white.png -- 9.78kb -> 9.26kb (5.33%) /res/terminal/images-Can/Square44x44Logo.targetsize-30_altform-unplated_contrast-white.png -- 0.66kb -> 0.63kb (5.15%) /res/terminal/images-Can/LockScreenLogo.scale-125_contrast-white.png -- 0.66kb -> 0.63kb (5.15%) /res/terminal/images-Can/Square44x44Logo.targetsize-30_contrast-white.png -- 0.66kb -> 0.63kb (5.15%) /res/terminal/images-Can/SplashScreen.scale-150.png -- 7.30kb -> 6.93kb (5.07%) /res/terminal/images-Can/Square150x150Logo.scale-150.png -- 3.08kb -> 2.92kb (5.02%) /res/terminal/images-Can/SplashScreen.scale-125.png -- 5.92kb -> 5.62kb (4.99%) /res/terminal/images-Can/Wide310x150Logo.scale-200.png -- 4.50kb -> 4.29kb (4.68%) /res/terminal/images-Can/SplashScreen.scale-100.png -- 4.50kb -> 4.29kb (4.68%) /res/terminal/images-Can/SplashScreen.scale-400_contrast-black.png -- 9.80kb -> 9.35kb (4.57%) /res/terminal/images-Can/StoreLogo.scale-200.png -- 2.68kb -> 2.56kb (4.44%) /res/terminal/images-Can/Square44x44Logo.targetsize-16_contrast-white.png -- 0.47kb -> 0.45kb (4.12%) /res/terminal/images-Can/Square44x44Logo.targetsize-16_altform-unplated_contrast-white.png -- 0.47kb -> 0.45kb (4.12%) /res/terminal/images-Can/SplashScreen.scale-400.png -- 27.21kb -> 26.09kb (4.12%) /res/terminal/images-Can/Wide310x150Logo.scale-400.png -- 10.60kb -> 10.17kb (3.98%) /res/terminal/images-Can/SplashScreen.scale-200.png -- 10.60kb -> 10.17kb (3.98%) /res/terminal/images-Can/Wide310x150Logo.scale-150.png -- 3.35kb -> 3.22kb (3.91%) /res/terminal/Terminal.svg -- 5.57kb -> 5.37kb (3.66%) /res/terminal/Terminal_Pre_HC.svg -- 2.82kb -> 2.71kb (3.64%) /res/terminal/Terminal_Can_HC.svg -- 2.82kb -> 2.71kb (3.64%) /res/terminal/images-Can/Wide310x150Logo.scale-100.png -- 1.86kb -> 1.83kb (1.94%) /res/terminal/images-Can/Square44x44Logo.targetsize-96.png -- 3.11kb -> 3.06kb (1.38%) /res/terminal/images-Can/LockScreenLogo.scale-400.png -- 3.11kb -> 3.06kb (1.38%) /res/terminal/images-Can/Square44x44Logo.targetsize-96_altform-unplated.png -- 3.11kb -> 3.06kb (1.38%) /res/terminal/images-Can/Wide310x150Logo.scale-125.png -- 2.38kb -> 2.36kb (1.07%) /res/terminal/images-Can/Square150x150Logo.scale-125.png -- 2.27kb -> 2.25kb (0.95%) /res/terminal/images-Can/SmallTile.scale-150.png -- 1.94kb -> 1.94kb (0.05%) Signed-off-by: ImgBotApp <ImgBotHelp@gmail.com>
Type the same commands multiple times or using external files from the terminal application to launch scripts. This feature would solve the problem of users alt tabbing allot of the time to run scripts where it could be in built in the terminal as an added option to make a side panel appear or something similar to that to show scripts and run them.
I want a panel to have toggle or an additional option so you can have a panel or something similar to be attached to the terminal so that you can run scripts from terminal and do not have to go into windows and search for scripts. This would kind of be like the the powershell ISE commands panel that you can toggle on but it would be for multiple terminals and you can set what you want to run their and the commands or scripts that you run all the time.
The text was updated successfully, but these errors were encountered: