-
Notifications
You must be signed in to change notification settings - Fork 8.4k
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
Can't reorder tabs when running as Administrator #6893
Comments
Huh, I'm not sure we really have an open issue tracking the status of this, but this is something that we can't support right now due to some platform limitations. Turns out, even if we tried to support reordering tabs while elevated, the application would actually just crash 😨. See #4874, #5564 and others for more details. This might be made better by not needing to run the Terminal elevated, which we're hoping to land as a part of #5000, though, no promises. |
If #5000 isn't going to be able to include the elevation fixes as it currently indicates, is there any progress towards this specific issue? It's rather a pain, since working with Vagrant + Hyper-V requires me to use elevation. |
@zadjii-msft we're seeing this same issue in Files with WinAppSdk. |
Very much needed functionality. Any workaround available with some key shortcuts maybe? |
Moving tabs isn't bound to a key, but it is in the Command Palette with the following actions: { "command": { "action" : "moveTab", "direction": "forward" }},
{ "command": { "action" : "moveTab", "direction": "backward" }}, |
@zadjii-msft Hi! The year is 2023. A lot of requests for this functionality are closed - while the functionality itself is still missing. I need a terminal in administrator mode and with the ability to move tabs normally by mouse. Except in the application code there can be no problems Please reopen the request and make the functionality normally. |
@avraam-inside Thanks for the feedback! As we discussed in #3581, dragging & dropping XAML elements in elevated applications is something that's strictly not supported by the platform currently. We've got ongoing threads with them internally, but there's nothing else we can do ourselves to support this. There's some discussion of the topic here: microsoft/WindowsAppSDK#373, but I'm not sure there's a dedicated WinAppSDK thread to that request. I'd recommend filing one there! That's the best place to request & show support for that feature request. |
@zadjii-msft thanks for fast answer! |
I truly hope this can be solved soon because I have to run Terminal as an administrator all of the time at work due to what I need to execute with it. So I really could use the ability to re-organize the tabs through drag 'n drop. If there isn't an option to do drag 'n drop for a while, can we get something like a workaround where you can right-click on a tab and tell it to "Move tab to the left", "Move tab to the right", "Move tab to the beginning" or "Move tab to the end"? At least this would allow us to move them around. Might not be efficient, but it would work. Thanks. |
FWIW there are |
Thanks @zadjii-msft . I completely missed that. Now, if only they would add it to the right-click menu of the tabs. And maybe add another option to "Move Tab to Beginning" and "Move Tab to End". Just my thoughts/2 cents of course. Thanks! |
You can add shortcut also in json
{
"command":
{
"action": "moveTab",
"direction": "forward"
},
"keys": "shift+right"
},
{
"command":
{
"action": "moveTab",
"direction": "backward"
},
"keys": "shift+left"
}
…On Fri, Dec 15, 2023 at 6:32 AM Ryan Wakefield ***@***.***> wrote:
Thanks @zadjii-msft <https://github.com/zadjii-msft> . I completely
missed that. Now, if only they would add it to the right-click menu of the
tabs. And maybe add another option to "Move Tab to Beginning" and "Move Tab
to End". Just my thoughts/2 cents of course.
Thanks!
—
Reply to this email directly, view it on GitHub
<#6893 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AADBBZ7VT3Z5A62Z5KORLXTYJOOTTAVCNFSM4OYG2XN2U5DIOJSWCZC7NNSXTN2JONZXKZKDN5WW2ZLOOQ5TCOBVG4YTANRTGY3A>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
@swinder0161 However, this is still not the proper solution. The Windows platform should be adjusted so that something completely arbitrary and logically unrelated, like administrator rights, should not affect an UI feature to perform a drag and drop operation. |
Guys, what are you really doing! It's not IT without dancing with a tambourine! Without inventing bicycles, workarounds and crutches! @swinder0161 Thanks for the shortcut! |
Environment
Steps to reproduce
Run Windows Terminal as Administrator
Expected behavior
You should be able to reorder the tabs.
Actual behavior
The tabs cannot be reordered.
The text was updated successfully, but these errors were encountered: