Broken behaviour of nextInOrder and previousInOrder with keybinding #16445

Closed
opened 2026-01-31 05:12:23 +00:00 by claunia · 9 comments
Owner

Originally created by @TimoKramer on GitHub (Jan 19, 2022).

Windows Terminal version

1.11.3471.0

Windows build number

10.0.18363.1832

Other Software

No response

Steps to reproduce

set these keybindings:

{ "command": { "action": "moveFocus", "direction": "previousInOrder" }, "keys": "ctrl+shift+[" },
{ "command": { "action": "moveFocus", "direction": "nextInOrder" }, "keys": "ctrl+shift+]" },

set up panes in a window that are besides and above each other.

Expected Behavior

with "ctrl+shift+]" you should be able to cycle through each one of them all one at a time. Same with "ctrl+shift+]". It should work the same way like when you do it via popup menu ("ctrl+shift+p").

Actual Behavior

it only cycles the panes left/right and the panes that are under another are not reachable.

Originally created by @TimoKramer on GitHub (Jan 19, 2022). ### Windows Terminal version 1.11.3471.0 ### Windows build number 10.0.18363.1832 ### Other Software _No response_ ### Steps to reproduce set these keybindings: ``` { "command": { "action": "moveFocus", "direction": "previousInOrder" }, "keys": "ctrl+shift+[" }, { "command": { "action": "moveFocus", "direction": "nextInOrder" }, "keys": "ctrl+shift+]" }, ``` set up panes in a window that are besides and above each other. ### Expected Behavior with "ctrl+shift+]" you should be able to cycle through each one of them all one at a time. Same with "ctrl+shift+]". It should work the same way like when you do it via popup menu ("ctrl+shift+p"). ### Actual Behavior it only cycles the panes left/right and the panes that are under another are not reachable.
Author
Owner

@TimoKramer commented on GitHub (Jan 19, 2022):

The issue on implementing this feature: https://github.com/microsoft/terminal/issues/10909

@TimoKramer commented on GitHub (Jan 19, 2022): The issue on implementing this feature: https://github.com/microsoft/terminal/issues/10909
Author
Owner

@zadjii-msft commented on GitHub (Jan 19, 2022):

Huh, I'm not seeing this....

gh-12201-no-repro

What pane layout exactly are you using? The specific order of pane splitting might matter here.

@zadjii-msft commented on GitHub (Jan 19, 2022): Huh, I'm not seeing this.... ![gh-12201-no-repro](https://user-images.githubusercontent.com/18356694/150151814-759e3cb2-973c-4974-8e5a-a14dc0b5be7a.gif) What pane layout exactly are you using? The specific order of pane splitting might matter here.
Author
Owner

@ghost commented on GitHub (Jan 23, 2022):

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.

@ghost commented on GitHub (Jan 23, 2022): 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**.
Author
Owner

@TimoKramer commented on GitHub (Jan 25, 2022):

How do you do these nice screen recordings?

I am usually having a large pane on the left and two narrow ones on the right above each other like this:
terminallayout

@TimoKramer commented on GitHub (Jan 25, 2022): How do you do these nice screen recordings? I am usually having a large pane on the left and two narrow ones on the right above each other like this: <img width="1594" alt="terminallayout" src="https://user-images.githubusercontent.com/4785848/150967479-2d3f1b05-294f-4f16-ac8c-b0f6179a919f.PNG">
Author
Owner

@zadjii-msft commented on GitHub (Jan 25, 2022):

The tool I use is ScreenToGif, it's absolutely great.

Now that I'm thinking about this, I don't think this feature is actually in 1.11.3471.0........... wait, yes it is. See https://github.com/microsoft/terminal/compare/v1.10.2714.0...v1.11.3471.0, the bot must have just been down. Hmm.

@zadjii-msft commented on GitHub (Jan 25, 2022): The tool I use is [ScreenToGif](https://www.screentogif.com/), it's absolutely great. ~Now that I'm thinking about this, I don't think this feature is actually in 1.11.3471.0~........... wait, yes it is. See https://github.com/microsoft/terminal/compare/v1.10.2714.0...v1.11.3471.0, the bot must have just been down. Hmm.
Author
Owner

@zadjii-msft commented on GitHub (Jan 25, 2022):

Could you share your whole settings.json file? Maybe there's something in there I'm missing. I just tried this on 1.11.3471.0 myself and it worked perfectly fine, so I'm definitely lost as to why this isn't working for you 😕

@zadjii-msft commented on GitHub (Jan 25, 2022): Could you share your whole [settings.json file](https://github.com/microsoft/terminal/wiki/Frequently-Asked-Questions-(FAQ)#where-can-i-find-the-settings-file)? Maybe there's something in there I'm missing. I just tried this on `1.11.3471.0` myself and it worked perfectly fine, so I'm definitely lost as to why this isn't working for you 😕
Author
Owner

@TimoKramer commented on GitHub (Jan 26, 2022):

sure 👍

{
    "$schema": "https://aka.ms/terminal-profiles-schema",
    "actions": 
    [
        {
            "command": 
            {
                "action": "copy",
                "singleLine": false
            }
        },
        {
            "command": "unbound",
            "keys": "ctrl+v"
        },
        {
            "command": "unbound",
            "keys": "ctrl+c"
        },
        {
            "command": "unbound",
            "keys": "alt+shift+plus"
        },
        {
            "command": "unbound",
            "keys": "alt+shift+down"
        },
        {
            "command": "unbound",
            "keys": "alt+shift+left"
        },
        {
            "command": "unbound",
            "keys": "alt+shift+right"
        },
        {
            "command": "unbound",
            "keys": "alt+shift+up"
        },
        {
            "command": "unbound",
            "keys": "alt+left"
        },
        {
            "command": "unbound",
            "keys": "alt+right"
        },
        {
            "command": 
            {
                "action": "swapPane",
                "direction": "down"
            },
            "keys": "ctrl+alt+shift+down"
        },
        {
            "command": 
            {
                "action": "resizePane",
                "direction": "up"
            },
            "keys": "ctrl+shift+up"
        },
        {
            "command": 
            {
                "action": "swapPane",
                "direction": "left"
            },
            "keys": "ctrl+alt+shift+left"
        },
        {
            "command": "paste"
        },
        {
            "command": "find",
            "keys": "ctrl+shift+f"
        },
        {
            "command": 
            {
                "action": "splitPane",
                "split": "auto",
                "splitMode": "duplicate"
            },
            "keys": "alt+shift+d"
        },
        {
            "command": 
            {
                "action": "resizePane",
                "direction": "down"
            },
            "keys": "ctrl+shift+down"
        },
        {
            "command": 
            {
                "action": "resizePane",
                "direction": "left"
            },
            "keys": "ctrl+shift+left"
        },
        {
            "command": 
            {
                "action": "swapPane",
                "direction": "up"
            },
            "keys": "ctrl+alt+shift+up"
        },
        {
            "command": 
            {
                "action": "resizePane",
                "direction": "right"
            },
            "keys": "ctrl+shift+right"
        },
        {
            "command": 
            {
                "action": "swapPane",
                "direction": "right"
            },
            "keys": "ctrl+alt+shift+right"
        },
        {
            "command": 
            {
                "action": "splitPane",
                "split": "auto"
            },
            "keys": "ctrl+shift+enter"
        },
        {
            "command": 
            {
                "action": "moveFocus",
                "direction": "right"
            },
            "keys": "ctrl+shift+]"
        },
        {
            "command": 
            {
                "action": "moveFocus",
                "direction": "left"
            },
            "keys": "ctrl+shift+["
        },
        {
            "command": "togglePaneZoom",
            "keys": "ctrl+shift+l"
        },
        {
            "command": 
            {
                "action": "moveFocus",
                "direction": "previousInOrder"
            }
        },
        {
            "command": 
            {
                "action": "moveFocus",
                "direction": "nextInOrder"
            }
        }
    ],
    "copyFormatting": "none",
    "copyOnSelect": true,
    "defaultProfile": "{d3f31bee-5823-5ed8-8e04-f31ed54f2cd9}",
    "initialCols": 150,
    "initialRows": 60,
    "launchMode": "default",
    "profiles": 
    {
        "defaults": 
        {
            "cursorShape": "filledBox",
            "font": 
            {
                "face": "CaskaydiaCove NF",
                "size": 10
            }
        },
        "list": 
        [
            {
                "colorScheme": "FooBar",
                "commandline": "powershell.exe",
                "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
                "hidden": false,
                "name": "Windows PowerShell"
            },
            {
                "commandline": "cmd.exe",
                "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
                "hidden": false,
                "name": "Command Prompt"
            },
            {
                "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
                "hidden": false,
                "name": "Azure Cloud Shell",
                "source": "Windows.Terminal.Azure"
            },
            {
                "colorScheme": "FooBar",
                "guid": "{d3f31bee-5823-5ed8-8e04-f31ed54f2cd9}",
                "hidden": false,
                "name": "Fedora Remix for WSL",
                "source": "Windows.Terminal.Wsl"
            }
        ]
    },
    "schemes": 
    [
        {
            "background": "#0C0C0C",
            "black": "#0C0C0C",
            "blue": "#0037DA",
            "brightBlack": "#767676",
            "brightBlue": "#3B78FF",
            "brightCyan": "#61D6D6",
            "brightGreen": "#16C60C",
            "brightPurple": "#B4009E",
            "brightRed": "#E74856",
            "brightWhite": "#F2F2F2",
            "brightYellow": "#F9F1A5",
            "cursorColor": "#FFFFFF",
            "cyan": "#3A96DD",
            "foreground": "#CCCCCC",
            "green": "#13A10E",
            "name": "Campbell",
            "purple": "#881798",
            "red": "#C50F1F",
            "selectionBackground": "#FFFFFF",
            "white": "#CCCCCC",
            "yellow": "#C19C00"
        },
        {
            "background": "#012456",
            "black": "#0C0C0C",
            "blue": "#0037DA",
            "brightBlack": "#767676",
            "brightBlue": "#3B78FF",
            "brightCyan": "#61D6D6",
            "brightGreen": "#16C60C",
            "brightPurple": "#B4009E",
            "brightRed": "#E74856",
            "brightWhite": "#F2F2F2",
            "brightYellow": "#F9F1A5",
            "cursorColor": "#FFFFFF",
            "cyan": "#3A96DD",
            "foreground": "#CCCCCC",
            "green": "#13A10E",
            "name": "Campbell Powershell",
            "purple": "#881798",
            "red": "#C50F1F",
            "selectionBackground": "#FFFFFF",
            "white": "#CCCCCC",
            "yellow": "#C19C00"
        },
        {
            "background": "#1E1E1E",
            "black": "#171421",
            "blue": "#12488B",
            "brightBlack": "#5E5C64",
            "brightBlue": "#2A7BDE",
            "brightCyan": "#33C7DE",
            "brightGreen": "#33DA7A",
            "brightPurple": "#C061CB",
            "brightRed": "#F66151",
            "brightWhite": "#FFFFFF",
            "brightYellow": "#E9AD0C",
            "cursorColor": "#FFFFFF",
            "cyan": "#2AA1B3",
            "foreground": "#E8E8E8",
            "green": "#26A269",
            "name": "Fedora Remix for WSL",
            "purple": "#A347BA",
            "red": "#C01C28",
            "selectionBackground": "#FFFFFF",
            "white": "#D0CFCC",
            "yellow": "#A2734C"
        },
        {
            "background": "#FAFAFA",
            "black": "#383A42",
            "blue": "#0184BC",
            "brightBlack": "#4F525D",
            "brightBlue": "#61AFEF",
            "brightCyan": "#56B5C1",
            "brightGreen": "#98C379",
            "brightPurple": "#C577DD",
            "brightRed": "#DF6C75",
            "brightWhite": "#FFFFFF",
            "brightYellow": "#E4C07A",
            "cursorColor": "#4F525D",
            "cyan": "#0997B3",
            "foreground": "#383A42",
            "green": "#50A14F",
            "name": "FooBar",
            "purple": "#A626A4",
            "red": "#E45649",
            "selectionBackground": "#B5B5B5",
            "white": "#FAFAFA",
            "yellow": "#C18301"
        },
        {
            "background": "#282C34",
            "black": "#282C34",
            "blue": "#61AFEF",
            "brightBlack": "#5A6374",
            "brightBlue": "#61AFEF",
            "brightCyan": "#56B6C2",
            "brightGreen": "#98C379",
            "brightPurple": "#C678DD",
            "brightRed": "#E06C75",
            "brightWhite": "#DCDFE4",
            "brightYellow": "#E5C07B",
            "cursorColor": "#FFFFFF",
            "cyan": "#56B6C2",
            "foreground": "#DCDFE4",
            "green": "#98C379",
            "name": "One Half Dark",
            "purple": "#C678DD",
            "red": "#E06C75",
            "selectionBackground": "#FFFFFF",
            "white": "#DCDFE4",
            "yellow": "#E5C07B"
        },
        {
            "background": "#FAFAFA",
            "black": "#383A42",
            "blue": "#0184BC",
            "brightBlack": "#4F525D",
            "brightBlue": "#61AFEF",
            "brightCyan": "#56B5C1",
            "brightGreen": "#98C379",
            "brightPurple": "#C577DD",
            "brightRed": "#DF6C75",
            "brightWhite": "#FFFFFF",
            "brightYellow": "#E4C07A",
            "cursorColor": "#4F525D",
            "cyan": "#0997B3",
            "foreground": "#383A42",
            "green": "#50A14F",
            "name": "One Half Light",
            "purple": "#A626A4",
            "red": "#E45649",
            "selectionBackground": "#FFFFFF",
            "white": "#FAFAFA",
            "yellow": "#C18301"
        },
        {
            "background": "#002B36",
            "black": "#002B36",
            "blue": "#268BD2",
            "brightBlack": "#073642",
            "brightBlue": "#839496",
            "brightCyan": "#93A1A1",
            "brightGreen": "#586E75",
            "brightPurple": "#6C71C4",
            "brightRed": "#CB4B16",
            "brightWhite": "#FDF6E3",
            "brightYellow": "#657B83",
            "cursorColor": "#FFFFFF",
            "cyan": "#2AA198",
            "foreground": "#839496",
            "green": "#859900",
            "name": "Solarized Dark",
            "purple": "#D33682",
            "red": "#DC322F",
            "selectionBackground": "#FFFFFF",
            "white": "#EEE8D5",
            "yellow": "#B58900"
        },
        {
            "background": "#FDF6E3",
            "black": "#002B36",
            "blue": "#268BD2",
            "brightBlack": "#073642",
            "brightBlue": "#839496",
            "brightCyan": "#93A1A1",
            "brightGreen": "#586E75",
            "brightPurple": "#6C71C4",
            "brightRed": "#CB4B16",
            "brightWhite": "#FDF6E3",
            "brightYellow": "#657B83",
            "cursorColor": "#002B36",
            "cyan": "#2AA198",
            "foreground": "#657B83",
            "green": "#859900",
            "name": "Solarized Light",
            "purple": "#D33682",
            "red": "#DC322F",
            "selectionBackground": "#FFFFFF",
            "white": "#EEE8D5",
            "yellow": "#B58900"
        },
        {
            "background": "#000000",
            "black": "#000000",
            "blue": "#3465A4",
            "brightBlack": "#555753",
            "brightBlue": "#729FCF",
            "brightCyan": "#34E2E2",
            "brightGreen": "#8AE234",
            "brightPurple": "#AD7FA8",
            "brightRed": "#EF2929",
            "brightWhite": "#EEEEEC",
            "brightYellow": "#FCE94F",
            "cursorColor": "#FFFFFF",
            "cyan": "#06989A",
            "foreground": "#D3D7CF",
            "green": "#4E9A06",
            "name": "Tango Dark",
            "purple": "#75507B",
            "red": "#CC0000",
            "selectionBackground": "#FFFFFF",
            "white": "#D3D7CF",
            "yellow": "#C4A000"
        },
        {
            "background": "#FFFFFF",
            "black": "#000000",
            "blue": "#3465A4",
            "brightBlack": "#555753",
            "brightBlue": "#729FCF",
            "brightCyan": "#34E2E2",
            "brightGreen": "#8AE234",
            "brightPurple": "#AD7FA8",
            "brightRed": "#EF2929",
            "brightWhite": "#EEEEEC",
            "brightYellow": "#FCE94F",
            "cursorColor": "#000000",
            "cyan": "#06989A",
            "foreground": "#555753",
            "green": "#4E9A06",
            "name": "Tango Light",
            "purple": "#75507B",
            "red": "#CC0000",
            "selectionBackground": "#FFFFFF",
            "white": "#D3D7CF",
            "yellow": "#C4A000"
        },
        {
            "background": "#000000",
            "black": "#000000",
            "blue": "#000080",
            "brightBlack": "#808080",
            "brightBlue": "#0000FF",
            "brightCyan": "#00FFFF",
            "brightGreen": "#00FF00",
            "brightPurple": "#FF00FF",
            "brightRed": "#FF0000",
            "brightWhite": "#FFFFFF",
            "brightYellow": "#FFFF00",
            "cursorColor": "#FFFFFF",
            "cyan": "#008080",
            "foreground": "#C0C0C0",
            "green": "#008000",
            "name": "Vintage",
            "purple": "#800080",
            "red": "#800000",
            "selectionBackground": "#FFFFFF",
            "white": "#C0C0C0",
            "yellow": "#808000"
        }
    ],
    "tabSwitcherMode": "inOrder",
    "tabWidthMode": "equal",
    "theme": "light"
}
@TimoKramer commented on GitHub (Jan 26, 2022): sure 👍 ``` { "$schema": "https://aka.ms/terminal-profiles-schema", "actions": [ { "command": { "action": "copy", "singleLine": false } }, { "command": "unbound", "keys": "ctrl+v" }, { "command": "unbound", "keys": "ctrl+c" }, { "command": "unbound", "keys": "alt+shift+plus" }, { "command": "unbound", "keys": "alt+shift+down" }, { "command": "unbound", "keys": "alt+shift+left" }, { "command": "unbound", "keys": "alt+shift+right" }, { "command": "unbound", "keys": "alt+shift+up" }, { "command": "unbound", "keys": "alt+left" }, { "command": "unbound", "keys": "alt+right" }, { "command": { "action": "swapPane", "direction": "down" }, "keys": "ctrl+alt+shift+down" }, { "command": { "action": "resizePane", "direction": "up" }, "keys": "ctrl+shift+up" }, { "command": { "action": "swapPane", "direction": "left" }, "keys": "ctrl+alt+shift+left" }, { "command": "paste" }, { "command": "find", "keys": "ctrl+shift+f" }, { "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" }, { "command": { "action": "resizePane", "direction": "down" }, "keys": "ctrl+shift+down" }, { "command": { "action": "resizePane", "direction": "left" }, "keys": "ctrl+shift+left" }, { "command": { "action": "swapPane", "direction": "up" }, "keys": "ctrl+alt+shift+up" }, { "command": { "action": "resizePane", "direction": "right" }, "keys": "ctrl+shift+right" }, { "command": { "action": "swapPane", "direction": "right" }, "keys": "ctrl+alt+shift+right" }, { "command": { "action": "splitPane", "split": "auto" }, "keys": "ctrl+shift+enter" }, { "command": { "action": "moveFocus", "direction": "right" }, "keys": "ctrl+shift+]" }, { "command": { "action": "moveFocus", "direction": "left" }, "keys": "ctrl+shift+[" }, { "command": "togglePaneZoom", "keys": "ctrl+shift+l" }, { "command": { "action": "moveFocus", "direction": "previousInOrder" } }, { "command": { "action": "moveFocus", "direction": "nextInOrder" } } ], "copyFormatting": "none", "copyOnSelect": true, "defaultProfile": "{d3f31bee-5823-5ed8-8e04-f31ed54f2cd9}", "initialCols": 150, "initialRows": 60, "launchMode": "default", "profiles": { "defaults": { "cursorShape": "filledBox", "font": { "face": "CaskaydiaCove NF", "size": 10 } }, "list": [ { "colorScheme": "FooBar", "commandline": "powershell.exe", "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", "hidden": false, "name": "Windows PowerShell" }, { "commandline": "cmd.exe", "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", "hidden": false, "name": "Command Prompt" }, { "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", "hidden": false, "name": "Azure Cloud Shell", "source": "Windows.Terminal.Azure" }, { "colorScheme": "FooBar", "guid": "{d3f31bee-5823-5ed8-8e04-f31ed54f2cd9}", "hidden": false, "name": "Fedora Remix for WSL", "source": "Windows.Terminal.Wsl" } ] }, "schemes": [ { "background": "#0C0C0C", "black": "#0C0C0C", "blue": "#0037DA", "brightBlack": "#767676", "brightBlue": "#3B78FF", "brightCyan": "#61D6D6", "brightGreen": "#16C60C", "brightPurple": "#B4009E", "brightRed": "#E74856", "brightWhite": "#F2F2F2", "brightYellow": "#F9F1A5", "cursorColor": "#FFFFFF", "cyan": "#3A96DD", "foreground": "#CCCCCC", "green": "#13A10E", "name": "Campbell", "purple": "#881798", "red": "#C50F1F", "selectionBackground": "#FFFFFF", "white": "#CCCCCC", "yellow": "#C19C00" }, { "background": "#012456", "black": "#0C0C0C", "blue": "#0037DA", "brightBlack": "#767676", "brightBlue": "#3B78FF", "brightCyan": "#61D6D6", "brightGreen": "#16C60C", "brightPurple": "#B4009E", "brightRed": "#E74856", "brightWhite": "#F2F2F2", "brightYellow": "#F9F1A5", "cursorColor": "#FFFFFF", "cyan": "#3A96DD", "foreground": "#CCCCCC", "green": "#13A10E", "name": "Campbell Powershell", "purple": "#881798", "red": "#C50F1F", "selectionBackground": "#FFFFFF", "white": "#CCCCCC", "yellow": "#C19C00" }, { "background": "#1E1E1E", "black": "#171421", "blue": "#12488B", "brightBlack": "#5E5C64", "brightBlue": "#2A7BDE", "brightCyan": "#33C7DE", "brightGreen": "#33DA7A", "brightPurple": "#C061CB", "brightRed": "#F66151", "brightWhite": "#FFFFFF", "brightYellow": "#E9AD0C", "cursorColor": "#FFFFFF", "cyan": "#2AA1B3", "foreground": "#E8E8E8", "green": "#26A269", "name": "Fedora Remix for WSL", "purple": "#A347BA", "red": "#C01C28", "selectionBackground": "#FFFFFF", "white": "#D0CFCC", "yellow": "#A2734C" }, { "background": "#FAFAFA", "black": "#383A42", "blue": "#0184BC", "brightBlack": "#4F525D", "brightBlue": "#61AFEF", "brightCyan": "#56B5C1", "brightGreen": "#98C379", "brightPurple": "#C577DD", "brightRed": "#DF6C75", "brightWhite": "#FFFFFF", "brightYellow": "#E4C07A", "cursorColor": "#4F525D", "cyan": "#0997B3", "foreground": "#383A42", "green": "#50A14F", "name": "FooBar", "purple": "#A626A4", "red": "#E45649", "selectionBackground": "#B5B5B5", "white": "#FAFAFA", "yellow": "#C18301" }, { "background": "#282C34", "black": "#282C34", "blue": "#61AFEF", "brightBlack": "#5A6374", "brightBlue": "#61AFEF", "brightCyan": "#56B6C2", "brightGreen": "#98C379", "brightPurple": "#C678DD", "brightRed": "#E06C75", "brightWhite": "#DCDFE4", "brightYellow": "#E5C07B", "cursorColor": "#FFFFFF", "cyan": "#56B6C2", "foreground": "#DCDFE4", "green": "#98C379", "name": "One Half Dark", "purple": "#C678DD", "red": "#E06C75", "selectionBackground": "#FFFFFF", "white": "#DCDFE4", "yellow": "#E5C07B" }, { "background": "#FAFAFA", "black": "#383A42", "blue": "#0184BC", "brightBlack": "#4F525D", "brightBlue": "#61AFEF", "brightCyan": "#56B5C1", "brightGreen": "#98C379", "brightPurple": "#C577DD", "brightRed": "#DF6C75", "brightWhite": "#FFFFFF", "brightYellow": "#E4C07A", "cursorColor": "#4F525D", "cyan": "#0997B3", "foreground": "#383A42", "green": "#50A14F", "name": "One Half Light", "purple": "#A626A4", "red": "#E45649", "selectionBackground": "#FFFFFF", "white": "#FAFAFA", "yellow": "#C18301" }, { "background": "#002B36", "black": "#002B36", "blue": "#268BD2", "brightBlack": "#073642", "brightBlue": "#839496", "brightCyan": "#93A1A1", "brightGreen": "#586E75", "brightPurple": "#6C71C4", "brightRed": "#CB4B16", "brightWhite": "#FDF6E3", "brightYellow": "#657B83", "cursorColor": "#FFFFFF", "cyan": "#2AA198", "foreground": "#839496", "green": "#859900", "name": "Solarized Dark", "purple": "#D33682", "red": "#DC322F", "selectionBackground": "#FFFFFF", "white": "#EEE8D5", "yellow": "#B58900" }, { "background": "#FDF6E3", "black": "#002B36", "blue": "#268BD2", "brightBlack": "#073642", "brightBlue": "#839496", "brightCyan": "#93A1A1", "brightGreen": "#586E75", "brightPurple": "#6C71C4", "brightRed": "#CB4B16", "brightWhite": "#FDF6E3", "brightYellow": "#657B83", "cursorColor": "#002B36", "cyan": "#2AA198", "foreground": "#657B83", "green": "#859900", "name": "Solarized Light", "purple": "#D33682", "red": "#DC322F", "selectionBackground": "#FFFFFF", "white": "#EEE8D5", "yellow": "#B58900" }, { "background": "#000000", "black": "#000000", "blue": "#3465A4", "brightBlack": "#555753", "brightBlue": "#729FCF", "brightCyan": "#34E2E2", "brightGreen": "#8AE234", "brightPurple": "#AD7FA8", "brightRed": "#EF2929", "brightWhite": "#EEEEEC", "brightYellow": "#FCE94F", "cursorColor": "#FFFFFF", "cyan": "#06989A", "foreground": "#D3D7CF", "green": "#4E9A06", "name": "Tango Dark", "purple": "#75507B", "red": "#CC0000", "selectionBackground": "#FFFFFF", "white": "#D3D7CF", "yellow": "#C4A000" }, { "background": "#FFFFFF", "black": "#000000", "blue": "#3465A4", "brightBlack": "#555753", "brightBlue": "#729FCF", "brightCyan": "#34E2E2", "brightGreen": "#8AE234", "brightPurple": "#AD7FA8", "brightRed": "#EF2929", "brightWhite": "#EEEEEC", "brightYellow": "#FCE94F", "cursorColor": "#000000", "cyan": "#06989A", "foreground": "#555753", "green": "#4E9A06", "name": "Tango Light", "purple": "#75507B", "red": "#CC0000", "selectionBackground": "#FFFFFF", "white": "#D3D7CF", "yellow": "#C4A000" }, { "background": "#000000", "black": "#000000", "blue": "#000080", "brightBlack": "#808080", "brightBlue": "#0000FF", "brightCyan": "#00FFFF", "brightGreen": "#00FF00", "brightPurple": "#FF00FF", "brightRed": "#FF0000", "brightWhite": "#FFFFFF", "brightYellow": "#FFFF00", "cursorColor": "#FFFFFF", "cyan": "#008080", "foreground": "#C0C0C0", "green": "#008000", "name": "Vintage", "purple": "#800080", "red": "#800000", "selectionBackground": "#FFFFFF", "white": "#C0C0C0", "yellow": "#808000" } ], "tabSwitcherMode": "inOrder", "tabWidthMode": "equal", "theme": "light" } ```
Author
Owner

@TimoKramer commented on GitHub (Jan 26, 2022):

Ohno, I wasted your time...shame on me...I was really sure I had it configured...but now it is obvious why it is not working. So sorry!

@TimoKramer commented on GitHub (Jan 26, 2022): Ohno, I wasted your time...shame on me...I was really sure I had it configured...but now it is obvious why it is not working. So sorry!
Author
Owner

@zadjii-msft commented on GitHub (Jan 26, 2022):

Lol no worries. Glad you got it figured out!

@zadjii-msft commented on GitHub (Jan 26, 2022): Lol no worries. Glad you got it figured out!
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/terminal#16445