Keybindings and Menu options don't follow settings.json's profile-list order #11200

Open
opened 2026-01-31 02:41:21 +00:00 by claunia · 0 comments
Owner

Originally created by @SFM61319 on GitHub (Oct 28, 2020).

Environment

Windows build number: 20180
Windows Terminal version (if applicable): 1.3.2651.0

Any other software? No

Steps to reproduce

Add this to your profiles["list"] in settings.json

{
    "guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
    "hidden": false,
    "name": "PowerShell",
    "source": "Windows.Terminal.PowershellCore"
},
{
    "guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
    "name": "Ubuntu",
    "tabTitle": "Ubuntu",
    "source": "Windows.Terminal.Wsl"
},
{
    "guid": "{00000000-0000-0000-ba54-000000000002}",
    "commandline": "\"%ProgramFiles%\\git\\usr\\bin\\bash.exe\" -i -l",
    "name": "Git Bash",
    "tabTitle": "Git Bash",
    "icon": "%SystemDrive%\\Program Files\\Git\\mingw64\\share\\git\\git-for-windows.ico"
},
{
    "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
    "name": "Command Prompt",
    "commandline": "cmd.exe",
    "hidden": false
},
{
    "guid": "{aaac8667-7e77-4193-9919-c3bf3114e92e}",
    "name": "Vim",
    "tabTitle": "Vim",
    "commandline": "vim.exe",
    "icon": "G:\\vim.ico"
},
{
    "guid": "{f6a80f8b-e054-4629-a8a1-351250b053a0}",
    "name": "Python",
    "tabTitle": "Python",
    "commandline": "python.exe",
    "icon": "C:\\Users\\%UserName%\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\python.ico"
},
{
    "guid": "{ee382107-f062-449d-96db-3299cf274fc9}",
    "name": "Julia",
    "tabTitle": "Julia",
    "commandline": "Julia.exe",
    "icon": "C:\\Users\\%UserName%\\AppData\\Local\\Programs\\Julia\\share\\doc\\julia\\html\\en\\assets\\julia.ico"
},
{
    "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
    "name": "Windows PowerShell",
    "commandline": "powershell.exe",
    "hidden": false
},
{
    "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
    "hidden": false,
    "name": "Azure Cloud Shell",
    "source": "Windows.Terminal.Azure"
}

Expected behavior

Order of tabs(?):

1. PowerShell 7 (pwsh.exe)
2. Ubuntu (has been uninstalled, so SKIP/IGNORE this)
3. Git Bash (git.exe)
4. Command Prompt (cmd.exe)
5. Vim (vim.exe)
6. Python 3.9 (python.exe)
7. Julia 1.5 (Julia.exe)
8. PowerShell (powershell.exe)
9. Azure Cloud Shell

Actual behavior

Weird/random order of tabs:

1. PowerShell 7 (pwsh.exe)
2. Command Prompt (cmd.exe)
3. Git Bash (git.exe)
4. Azure Cloud Shell
5. Vim (vim.exe)
6. Python 3.9 (python.exe)
7. Julia 1.5 (Julia.exe)
8. PowerShell (powershell.exe)

Bug

Originally created by @SFM61319 on GitHub (Oct 28, 2020). <!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING: 1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement. 2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further explanation or engagement. 3. If I write an issue that has many duplicates, the core team may close my issue without further explanation or engagement (and without necessarily spending time to find the exact duplicate ID number). 4. If I leave the title incomplete when filing the issue, the core team may close my issue without further explanation or engagement. 5. If I file something completely blank in the body, the core team may close my issue without further explanation or engagement. All good? Then proceed! --> <!-- This bug tracker is monitored by Windows Terminal development team and other technical folks. **Important: When reporting BSODs or security issues, DO NOT attach memory dumps, logs, or traces to Github issues**. Instead, send dumps/traces to secure@microsoft.com, referencing this GitHub issue. If this is an application crash, please also provide a Feedback Hub submission link so we can find your diagnostic data on the backend. Use the category "Apps > Windows Terminal (Preview)" and choose "Share My Feedback" after submission to get the link. Please use this form and describe your issue, concisely but precisely, with as much detail as possible. --> # Environment ```none Windows build number: 20180 Windows Terminal version (if applicable): 1.3.2651.0 Any other software? No ``` # Steps to reproduce <!-- A description of how to trigger this bug. --> Add this to your `profiles["list"]` in `settings.json` ```json { "guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", "hidden": false, "name": "PowerShell", "source": "Windows.Terminal.PowershellCore" }, { "guid": "{2c4de342-38b7-51cf-b940-2309a097f518}", "name": "Ubuntu", "tabTitle": "Ubuntu", "source": "Windows.Terminal.Wsl" }, { "guid": "{00000000-0000-0000-ba54-000000000002}", "commandline": "\"%ProgramFiles%\\git\\usr\\bin\\bash.exe\" -i -l", "name": "Git Bash", "tabTitle": "Git Bash", "icon": "%SystemDrive%\\Program Files\\Git\\mingw64\\share\\git\\git-for-windows.ico" }, { "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", "name": "Command Prompt", "commandline": "cmd.exe", "hidden": false }, { "guid": "{aaac8667-7e77-4193-9919-c3bf3114e92e}", "name": "Vim", "tabTitle": "Vim", "commandline": "vim.exe", "icon": "G:\\vim.ico" }, { "guid": "{f6a80f8b-e054-4629-a8a1-351250b053a0}", "name": "Python", "tabTitle": "Python", "commandline": "python.exe", "icon": "C:\\Users\\%UserName%\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\python.ico" }, { "guid": "{ee382107-f062-449d-96db-3299cf274fc9}", "name": "Julia", "tabTitle": "Julia", "commandline": "Julia.exe", "icon": "C:\\Users\\%UserName%\\AppData\\Local\\Programs\\Julia\\share\\doc\\julia\\html\\en\\assets\\julia.ico" }, { "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", "name": "Windows PowerShell", "commandline": "powershell.exe", "hidden": false }, { "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", "hidden": false, "name": "Azure Cloud Shell", "source": "Windows.Terminal.Azure" } ``` # Expected behavior <!-- A description of what you're expecting, possibly containing screenshots or reference material. --> Order of tabs(?): ``` 1. PowerShell 7 (pwsh.exe) 2. Ubuntu (has been uninstalled, so SKIP/IGNORE this) 3. Git Bash (git.exe) 4. Command Prompt (cmd.exe) 5. Vim (vim.exe) 6. Python 3.9 (python.exe) 7. Julia 1.5 (Julia.exe) 8. PowerShell (powershell.exe) 9. Azure Cloud Shell ``` # Actual behavior Weird/random order of tabs: ``` 1. PowerShell 7 (pwsh.exe) 2. Command Prompt (cmd.exe) 3. Git Bash (git.exe) 4. Azure Cloud Shell 5. Vim (vim.exe) 6. Python 3.9 (python.exe) 7. Julia 1.5 (Julia.exe) 8. PowerShell (powershell.exe) ``` ![Bug](https://user-images.githubusercontent.com/45308169/97502088-6d099500-1998-11eb-945a-457218e63d30.png)
claunia added the Resolution-Duplicate label 2026-01-31 02:41:21 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/terminal#11200