-
Notifications
You must be signed in to change notification settings - Fork 8.5k
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
Sidebar for Profiles #14453
Comments
I don't mind the panel if it's not always visible. Do you launch every profile manually every time? Launch all at once from powershell tab. # Check the path to settings.json. This one is for WT Preview
$json = "$env:LocalAppData\Packages\Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe\LocalState\settings.json"
(Get-Content $json | ConvertFrom-Json).profiles.list |
Where-Object { (-not $_.hidden) -and ($_.guid -ne $env:WT_PROFILE_ID) } |
Foreach-Object { wt --window 0 new-tab --profile $_.name }
|
Interesting idea. There's a couple items on the backlog that might be a bit easier to implement
or alternatively, using the command palette to search for which profile to open Would any of that work for you/? |
This issue has been automatically marked as stale because it has been marked as requiring author feedback but has not had any activity for 4 days. It will be closed if no further activity occurs within 3 days of this comment. |
Neat idea. But I need to select the server I need to connect to depending on the task I need to perform. So unfortunately I can't automate this. But probably helpful for the future! |
Nice idea with the drop down customisation! I will try it. The search will mit not always work for me since I don't have all the server names right in the top of my head. Which brings me to another idea: my suggested sidebar could be extended with folders to organise entries for example powershell scripts, customer a, customer b, and so on. |
You can actually also customize the entries in the Command Palette however you'd like! This doc has a trivial example with combining entries under a "Change font size..." entry, but you could easily add |
This issue has been automatically marked as stale because it has been marked as requiring author feedback but has not had any activity for 4 days. It will be closed if no further activity occurs within 3 days of this comment. |
Description of the new feature/enhancement
I currently have about 30 profiles that I need again and again to establish connections to servers. Selecting from the drop-down list becomes very confusing over time, which is why I would find a sidebar very practical.
Similar to other multi-terminal programmes, you can then establish a new connection from the sidebar by double-clicking on the profile.
Proposed technical implementation details (optional)
The text was updated successfully, but these errors were encountered: