strange chars in wsl / ubuntu terminal window #19250

Closed
opened 2026-01-31 06:38:04 +00:00 by claunia · 10 comments
Owner

Originally created by @YouveGotMeowxy on GitHub (Jan 22, 2023).

When I open a new ubuntu terminal and doa ctrl+v to paste, I get weird characters, and then if i hit anything else, liek backspace, or delete, i just get more weird chars:

like this:

^[[200~ps aux^[[201~^?^?^?^?^?^?^?^?^[[3~^[[3~^[[3~^[[3~^[[3~^[[3~^[[3~

I've looked through the settings but don't see anything I can mess with to possibly fix this?

Originally created by @YouveGotMeowxy on GitHub (Jan 22, 2023). When I open a new ubuntu terminal and doa ctrl+v to paste, I get weird characters, and then if i hit anything else, liek backspace, or delete, i just get more weird chars: like this: ^[[200~ps aux^[[201~^?^?^?^?^?^?^?^?^[[3~^[[3~^[[3~^[[3~^[[3~^[[3~^[[3~ I've looked through the settings but don't see anything I can mess with to possibly fix this?
Author
Owner

@zadjii-msft commented on GitHub (Jan 23, 2023):

That looks like ENABLE_VIRTUAL_TERMINAL_PROCESSING got turned off somehow, which would be very unexpected.

  • What OS version are you on?
  • Which version of the Terminal/?
  • What's the commandline you're using to launch WSL?

There was another bracketed paste issue that came up a few months ago, but I'm pretty sure we hotfixed that in the last couple 1.15+ builds.

@zadjii-msft commented on GitHub (Jan 23, 2023): That looks like `ENABLE_VIRTUAL_TERMINAL_PROCESSING` got turned off somehow, which would be very unexpected. * What OS version are you on? * Which version of the Terminal/? * What's the `commandline` you're using to launch WSL? There was another bracketed paste issue that came up a few months ago, but I'm pretty sure we hotfixed that in the last couple 1.15+ builds.
Author
Owner

@YouveGotMeowxy commented on GitHub (Jan 23, 2023):

That looks like ENABLE_VIRTUAL_TERMINAL_PROCESSING got turned off somehow, which would be very unexpected.

  • What OS version are you on?
  • Which version of the Terminal/?
  • What's the commandline you're using to launch WSL?

There was another bracketed paste issue that came up a few months ago, but I'm pretty sure we hotfixed that in the last couple 1.15+ builds.

Ty for the quick reply. :)

Windows Terminal
Version: 1.15.3465.0
On Win 10 x64

The command line was just picked up automatically by Terminal after installing Ubuntu for WSL. Here's the entire profile for it:

            {
                "backgroundImage": "D:\\Programs\\Terminal\\Nord - 2E3440.png",
                "backgroundImageAlignment": "center",
                "colorScheme": "[Dark] Nord ",
                "commandline": "wsl.exe -d Ubuntu",
                "font":
                {
                    "face": "MesloLGS NF",
                    "size": 10
                },
                "guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
                "hidden": false,
                "icon": "D:\\Programs\\Terminal\\ubuntu.png",
                "name": "Ubuntu",
                "padding": "12, 12, 12, 12",
                "source": "Windows.Terminal.Wsl",
                "startingDirectory": "//wsl$/Ubuntu/home/kacey",
                "tabColor": "#830B5A"
            },

It's kinda weird, if I open a fresh tab and try to paste is sometimes does this and I can't get it to stop. And if I manage to get a clean command off, it'll just hang perpetually with not result shown after the command.

But if I just do a hand typed command as usual (without an initial paste) it behaves as usual.

@YouveGotMeowxy commented on GitHub (Jan 23, 2023): > That looks like `ENABLE_VIRTUAL_TERMINAL_PROCESSING` got turned off somehow, which would be very unexpected. > > * What OS version are you on? > * Which version of the Terminal/? > * What's the `commandline` you're using to launch WSL? > > There was another bracketed paste issue that came up a few months ago, but I'm pretty sure we hotfixed that in the last couple 1.15+ builds. Ty for the quick reply. :) Windows Terminal Version: 1.15.3465.0 On Win 10 x64 The command line was just picked up automatically by Terminal after installing Ubuntu for WSL. Here's the entire profile for it: ``` { "backgroundImage": "D:\\Programs\\Terminal\\Nord - 2E3440.png", "backgroundImageAlignment": "center", "colorScheme": "[Dark] Nord ", "commandline": "wsl.exe -d Ubuntu", "font": { "face": "MesloLGS NF", "size": 10 }, "guid": "{2c4de342-38b7-51cf-b940-2309a097f518}", "hidden": false, "icon": "D:\\Programs\\Terminal\\ubuntu.png", "name": "Ubuntu", "padding": "12, 12, 12, 12", "source": "Windows.Terminal.Wsl", "startingDirectory": "//wsl$/Ubuntu/home/kacey", "tabColor": "#830B5A" }, ``` It's kinda weird, if I open a fresh tab and try to paste is sometimes does this and I can't get it to stop. And if I manage to get a clean command off, it'll just hang perpetually with not result shown after the command. But if I just do a hand typed command as usual (without an initial paste) it behaves as usual.
Author
Owner

@j4james commented on GitHub (Jan 23, 2023):

That looks like ENABLE_VIRTUAL_TERMINAL_PROCESSING got turned off somehow

@zadjii-msft I don't think it's that. Those sequences are exactly what you'd see in a wsl shell if you executed something like read. It's just echoing back what you type, with the control characters converted to a printable format.

My guess would be something going wrong in the shell. For example, if something like autocomplete is hanging, the shell may be left in a state where it's not processing keypresses, so it reverts to raw input buffering where you see that echoing effect.

@j4james commented on GitHub (Jan 23, 2023): > That looks like `ENABLE_VIRTUAL_TERMINAL_PROCESSING` got turned off somehow @zadjii-msft I don't think it's that. Those sequences are exactly what you'd see in a wsl shell if you executed something like `read`. It's just echoing back what you type, with the control characters converted to a printable format. My guess would be something going wrong in the shell. For example, if something like autocomplete is hanging, the shell may be left in a state where it's not processing keypresses, so it reverts to raw input buffering where you see that echoing effect.
Author
Owner

@j4james commented on GitHub (Jan 23, 2023):

@YouveGotMeowxy Have you tried running the same wsl instance in a conhost console? If so, does it have the same problem?

@j4james commented on GitHub (Jan 23, 2023): @YouveGotMeowxy Have you tried running the same wsl instance in a conhost console? If so, does it have the same problem?
Author
Owner

@YouveGotMeowxy commented on GitHub (Jan 24, 2023):

@YouveGotMeowxy Have you tried running the same wsl instance in a conhost console? If so, does it have the same problem?

I haven't but I will. The problem is, it's hard to predict when this will happen since it just happens randomly, and not in any real predictable pattern.

@YouveGotMeowxy commented on GitHub (Jan 24, 2023): > @YouveGotMeowxy Have you tried running the same wsl instance in a conhost console? If so, does it have the same problem? I haven't but I will. The problem is, it's hard to predict when this will happen since it just happens randomly, and not in any real predictable pattern.
Author
Owner

@zadjii-msft commented on GitHub (Jan 24, 2023):

and doa ctrl+v to paste

Wait, that might actually be it. Could you share your settings.json file/?

Cause there is that whole thing where ^V in bash will escape the next character, so that might end up escaping the ^[. But that should only happen if ctrl+v was unbound...

@zadjii-msft commented on GitHub (Jan 24, 2023): > and doa ctrl+v to paste Wait, that might actually be it. Could you share your [settings.json file](https://github.com/microsoft/terminal/wiki/Frequently-Asked-Questions-(FAQ)#where-can-i-find-the-settings-file)/? Cause there is that whole thing where `^V` in bash will escape the next character, so that might end up escaping the `^[`. But that should only happen if <kbd>ctrl+v</kbd> was unbound...
Author
Owner

@YouveGotMeowxy commented on GitHub (Jan 24, 2023):

Wait, that might actually be it. Could you share your settings.json file

Sure thing. It also happens on a right-click in the window (which also equates to a paste):

{
    "$help": "https://aka.ms/terminal-documentation",
    "$schema": "https://aka.ms/terminal-profiles-schema",
    "actions": 
    [
        {
            "command": "find",
            "keys": "ctrl+shift+f"
        },
        {
            "command": "paste",
            "keys": "ctrl+v"
        },
        {
            "command": 
            {
                "action": "copy",
                "singleLine": false
            },
            "keys": "ctrl+c"
        },
        {
            "command": 
            {
                "action": "splitPane",
                "split": "auto",
                "splitMode": "duplicate"
            },
            "keys": "alt+shift+d"
        },
        {
            "command": "unbound",
            "keys": "ctrl+insert"
        },
        {
            "command": "unbound",
            "keys": "shift+insert"
        }
    ],
    "copyFormatting": "none",
    "copyOnSelect": true,
    "defaultProfile": "{2c4de342-38b7-51cf-b940-2309a097f518}",
    "initialCols": 250,
    "initialRows": 68,
    "language": "en-US",
    "profiles": 
    {
        "defaults": 
        {
            "closeOnExit": "never"
        },
        "list": 
        [
            {
                "font": 
                {
                    "size": 10
                },
                "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
                "hidden": false,
                "icon": "D:\\Programs\\Terminal\\dos.png",
                "name": "Command Prompt"
            },
            {
                "colorScheme": "Campbell Powershell",
                "font": 
                {
                    "face": "Cascadia Code PL",
                    "size": 9
                },
                "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
                "hidden": false,
                "name": "PowerShell",
                "tabColor": "#4682B4"
            },
            {
                "backgroundImage": "D:\\Programs\\Terminal\\Nord - 2E3440.png",
                "backgroundImageAlignment": "center",
                "colorScheme": "[Dark] Nord ",
                "commandline": "wsl.exe -d Ubuntu",
                "font": 
                {
                    "face": "MesloLGS NF",
                    "size": 10
                },
                "guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
                "hidden": false,
                "icon": "D:\\Programs\\Terminal\\ubuntu.png",
                "name": "Ubuntu",
                "padding": "12, 12, 12, 12",
                "source": "Windows.Terminal.Wsl",
                "startingDirectory": "//wsl$/Ubuntu/home/kacey",
                "tabColor": "#830B5A"
            },
            {
                "backgroundImage": "D://Programs//Terminal//ubuntu-wallpaper.png",
                "backgroundImageAlignment": "center",
                "colorScheme": "Ubuntu [Legit]",
                "commandline": "wsl.exe -d Ubuntu -u root",
                "font": 
                {
                    "face": "Ubuntu Mono",
                    "size": 10
                },
                "guid": "{de734ea9-2829-4dca-ba11-15f5b60f39c5}",
                "hidden": false,
                "icon": "D:\\Programs\\Terminal\\ubuntu.png",
                "name": "Ubuntu (Root)",
                "padding": "12, 12, 12, 12",
                "startingDirectory": "//wsl$/Ubuntu/home/kacey",
                "tabColor": "#830B5A"
            },
            {
                "closeOnExit": "never",
                "commandline": "wsl.exe -d ubuntu -u root -- ntpdate time.windows.com",
                "guid": "{1d4de342-38b7-51cf-b940-2309a097f518}",
                "icon": "D:\\Programs\\Terminal\\ubuntu.png",
                "name": "Ubuntu (Update System Clock)"
            },
            {
                "commandline": "cmd.exe /C D://kacey//Docker//lazydocker.exe",
                "font": 
                {
                    "size": 10
                },
                "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6102}",
                "hidden": false,
                "icon": "D:\\Programs\\Terminal\\Docker.ico",
                "name": "LazyDocker"
            },
            {
                "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
                "hidden": true,
                "name": "Azure Cloud Shell",
                "source": "Windows.Terminal.Azure",
                "tabColor": "#1B8CE7"
            }
        ]
    },
    "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": "#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": "#2C001E",
            "black": "#4E9A06",
            "blue": "#3465A4",
            "brightBlack": "#555753",
            "brightBlue": "#729FCF",
            "brightCyan": "#34E2E2",
            "brightGreen": "#8AE234",
            "brightPurple": "#AD7FA8",
            "brightRed": "#EF2929",
            "brightWhite": "#EEEEEE",
            "brightYellow": "#FCE94F",
            "cursorColor": "#FFFFFF",
            "cyan": "#06989A",
            "foreground": "#EEEEEE",
            "green": "#7DFF07",
            "name": "Ubuntu [Legit]",
            "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": "#E5E9F0",
            "green": "#008000",
            "name": "Vintage",
            "purple": "#800080",
            "red": "#800000",
            "selectionBackground": "#FFFFFF",
            "white": "#E5E9F0",
            "yellow": "#808000"
        },
        {
            "background": "#2E3440",
            "black": "#000000",
            "blue": "#5E81AC",
            "brightBlack": "#808080",
            "brightBlue": "#81A1C1",
            "brightCyan": "#8FBCBB",
            "brightGreen": "#A3BE8C",
            "brightPurple": "#B48EAD",
            "brightRed": "#BF616A",
            "brightWhite": "#FFFFFF",
            "brightYellow": "#EBCB8B",
            "cursorColor": "#D8DEE9",
            "cyan": "#88C0D0",
            "foreground": "#D8DEE9",
            "green": "#A3BE8C",
            "name": "[Dark] Nord ",
            "purple": "#B48EAD",
            "red": "#BF616A",
            "selectionBackground": "#D8DEE9",
            "white": "#ECEFF4",
            "yellow": "#EBCB8B"
        },
        {
            "background": "#2E3436",
            "black": "#2E3436",
            "blue": "#3465A4",
            "brightBlack": "#696B67",
            "brightBlue": "#729FCF",
            "brightCyan": "#2EC3C3",
            "brightGreen": "#79C32E",
            "brightPurple": "#AD7FA8",
            "brightRed": "#F49797",
            "brightWhite": "#FBFBFB",
            "brightYellow": "#FCE94F",
            "cursorColor": "#FFFFFF",
            "cyan": "#06989A",
            "foreground": "#B5BBAE",
            "green": "#4E9A06",
            "name": "[Dark] Ubuntu",
            "purple": "#75507B",
            "red": "#AE5E5E",
            "selectionBackground": "#FFFFFF",
            "white": "#B5BBAE",
            "yellow": "#C4A000"
        },
        {
            "background": "#FBFBFB",
            "black": "#FBFBFB",
            "blue": "#729FCF",
            "brightBlack": "#B5BBAE",
            "brightBlue": "#3465A4",
            "brightCyan": "#06989A",
            "brightGreen": "#3B7505",
            "brightPurple": "#75507B",
            "brightRed": "#AE5E5E",
            "brightWhite": "#2E3436",
            "brightYellow": "#8A7000",
            "cursorColor": "#FFFFFF",
            "cyan": "#2EC3C3",
            "foreground": "#696B67",
            "green": "#79C32E",
            "name": "[Light] Ubuntu",
            "purple": "#AD7FA8",
            "red": "#F49797",
            "selectionBackground": "#B5BBAE",
            "white": "#696B67",
            "yellow": "#C4A000"
        }
    ],
    "tabWidthMode": "compact",
    "theme": "dark",
    "useAcrylicInTabRow": false
}
@YouveGotMeowxy commented on GitHub (Jan 24, 2023): > Wait, that might actually be it. Could you share your settings.json file Sure thing. It also happens on a right-click in the window (which also equates to a paste): ``` { "$help": "https://aka.ms/terminal-documentation", "$schema": "https://aka.ms/terminal-profiles-schema", "actions": [ { "command": "find", "keys": "ctrl+shift+f" }, { "command": "paste", "keys": "ctrl+v" }, { "command": { "action": "copy", "singleLine": false }, "keys": "ctrl+c" }, { "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" }, { "command": "unbound", "keys": "ctrl+insert" }, { "command": "unbound", "keys": "shift+insert" } ], "copyFormatting": "none", "copyOnSelect": true, "defaultProfile": "{2c4de342-38b7-51cf-b940-2309a097f518}", "initialCols": 250, "initialRows": 68, "language": "en-US", "profiles": { "defaults": { "closeOnExit": "never" }, "list": [ { "font": { "size": 10 }, "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", "hidden": false, "icon": "D:\\Programs\\Terminal\\dos.png", "name": "Command Prompt" }, { "colorScheme": "Campbell Powershell", "font": { "face": "Cascadia Code PL", "size": 9 }, "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", "hidden": false, "name": "PowerShell", "tabColor": "#4682B4" }, { "backgroundImage": "D:\\Programs\\Terminal\\Nord - 2E3440.png", "backgroundImageAlignment": "center", "colorScheme": "[Dark] Nord ", "commandline": "wsl.exe -d Ubuntu", "font": { "face": "MesloLGS NF", "size": 10 }, "guid": "{2c4de342-38b7-51cf-b940-2309a097f518}", "hidden": false, "icon": "D:\\Programs\\Terminal\\ubuntu.png", "name": "Ubuntu", "padding": "12, 12, 12, 12", "source": "Windows.Terminal.Wsl", "startingDirectory": "//wsl$/Ubuntu/home/kacey", "tabColor": "#830B5A" }, { "backgroundImage": "D://Programs//Terminal//ubuntu-wallpaper.png", "backgroundImageAlignment": "center", "colorScheme": "Ubuntu [Legit]", "commandline": "wsl.exe -d Ubuntu -u root", "font": { "face": "Ubuntu Mono", "size": 10 }, "guid": "{de734ea9-2829-4dca-ba11-15f5b60f39c5}", "hidden": false, "icon": "D:\\Programs\\Terminal\\ubuntu.png", "name": "Ubuntu (Root)", "padding": "12, 12, 12, 12", "startingDirectory": "//wsl$/Ubuntu/home/kacey", "tabColor": "#830B5A" }, { "closeOnExit": "never", "commandline": "wsl.exe -d ubuntu -u root -- ntpdate time.windows.com", "guid": "{1d4de342-38b7-51cf-b940-2309a097f518}", "icon": "D:\\Programs\\Terminal\\ubuntu.png", "name": "Ubuntu (Update System Clock)" }, { "commandline": "cmd.exe /C D://kacey//Docker//lazydocker.exe", "font": { "size": 10 }, "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6102}", "hidden": false, "icon": "D:\\Programs\\Terminal\\Docker.ico", "name": "LazyDocker" }, { "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", "hidden": true, "name": "Azure Cloud Shell", "source": "Windows.Terminal.Azure", "tabColor": "#1B8CE7" } ] }, "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": "#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": "#2C001E", "black": "#4E9A06", "blue": "#3465A4", "brightBlack": "#555753", "brightBlue": "#729FCF", "brightCyan": "#34E2E2", "brightGreen": "#8AE234", "brightPurple": "#AD7FA8", "brightRed": "#EF2929", "brightWhite": "#EEEEEE", "brightYellow": "#FCE94F", "cursorColor": "#FFFFFF", "cyan": "#06989A", "foreground": "#EEEEEE", "green": "#7DFF07", "name": "Ubuntu [Legit]", "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": "#E5E9F0", "green": "#008000", "name": "Vintage", "purple": "#800080", "red": "#800000", "selectionBackground": "#FFFFFF", "white": "#E5E9F0", "yellow": "#808000" }, { "background": "#2E3440", "black": "#000000", "blue": "#5E81AC", "brightBlack": "#808080", "brightBlue": "#81A1C1", "brightCyan": "#8FBCBB", "brightGreen": "#A3BE8C", "brightPurple": "#B48EAD", "brightRed": "#BF616A", "brightWhite": "#FFFFFF", "brightYellow": "#EBCB8B", "cursorColor": "#D8DEE9", "cyan": "#88C0D0", "foreground": "#D8DEE9", "green": "#A3BE8C", "name": "[Dark] Nord ", "purple": "#B48EAD", "red": "#BF616A", "selectionBackground": "#D8DEE9", "white": "#ECEFF4", "yellow": "#EBCB8B" }, { "background": "#2E3436", "black": "#2E3436", "blue": "#3465A4", "brightBlack": "#696B67", "brightBlue": "#729FCF", "brightCyan": "#2EC3C3", "brightGreen": "#79C32E", "brightPurple": "#AD7FA8", "brightRed": "#F49797", "brightWhite": "#FBFBFB", "brightYellow": "#FCE94F", "cursorColor": "#FFFFFF", "cyan": "#06989A", "foreground": "#B5BBAE", "green": "#4E9A06", "name": "[Dark] Ubuntu", "purple": "#75507B", "red": "#AE5E5E", "selectionBackground": "#FFFFFF", "white": "#B5BBAE", "yellow": "#C4A000" }, { "background": "#FBFBFB", "black": "#FBFBFB", "blue": "#729FCF", "brightBlack": "#B5BBAE", "brightBlue": "#3465A4", "brightCyan": "#06989A", "brightGreen": "#3B7505", "brightPurple": "#75507B", "brightRed": "#AE5E5E", "brightWhite": "#2E3436", "brightYellow": "#8A7000", "cursorColor": "#FFFFFF", "cyan": "#2EC3C3", "foreground": "#696B67", "green": "#79C32E", "name": "[Light] Ubuntu", "purple": "#AD7FA8", "red": "#F49797", "selectionBackground": "#B5BBAE", "white": "#696B67", "yellow": "#C4A000" } ], "tabWidthMode": "compact", "theme": "dark", "useAcrylicInTabRow": false } ```
Author
Owner

@zadjii-msft commented on GitHub (Oct 11, 2023):

Hey, looping back on this after a few months - is this still happening on 1.19? If so, can you get us a debug tap trace/?

@zadjii-msft commented on GitHub (Oct 11, 2023): Hey, looping back on this after a few months - is this still happening on 1.19? If so, can you get us a [debug tap trace](https://github.com/microsoft/terminal/wiki/Troubleshooting-Tips#enabling-the-debug-tap)/?
Author
Owner

@YouveGotMeowxy commented on GitHub (Oct 12, 2023):

@zadjii-msft Thanks for following up. :)

It seems to have "gone away", as I haven't had the issue in a long time. I wish I could say exactly what I did to fix it, but it's been so long now that I forget, lol.

If I ever have the problem again, or remember what I did to correct it, I'll post back here!

@YouveGotMeowxy commented on GitHub (Oct 12, 2023): @zadjii-msft Thanks for following up. :) It seems to have "gone away", as I haven't had the issue in a long time. I wish I could say exactly what I did to fix it, but it's been so long now that I forget, lol. If I ever have the problem again, or remember what I did to correct it, I'll post back here!
Author
Owner

@zadjii-msft commented on GitHub (Oct 12, 2023):

Well, thanks for following up! We can always reopen if it comes back.

@zadjii-msft commented on GitHub (Oct 12, 2023): Well, thanks for following up! We can always reopen if it comes back.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/terminal#19250