daveleroy / SublimeDebugger

Graphical Debugger for Sublime Text for debuggers that support the debug adapter protocol
MIT License
371 stars 44 forks source link

Broken ui, install adapters not working #156

Closed lijok closed 2 years ago

lijok commented 2 years ago

New to sublime, trying to get a debugger going, and so far only managed to get Debugger installed. When I open the debugger, this is what the ui looks like:

image

On top of that, Debugger: Install Adapters command does nothing after selecting it I don't get any logs in the console regarding these two actions. If there's any logs I can pull out from somewhere else, please let me know.

MBP M1 Monterey 12.3 Sublime Build 4126

Thank you

lijok commented 2 years ago

Reinstalling sublime fixed the issue

shot-codes commented 2 years ago

Ugh, I have this issue as well and would rather avoid reinstalling sublime... Any one else have suggestions?

shot-codes commented 2 years ago

This might help someone else out there. I was able to fix the issue by commenting out the customizations I had on top of the default theme and saving. After which I was able to re-apply them and the issue seems to be gone for good, also after restarting the app.

daveleroy commented 2 years ago

This might help someone else out there. I was able to fix the issue by commenting out the customizations I had on top of the default theme and saving. After which I was able to re-apply them and the issue seems to be gone for good, also after restarting the app.

What customizations did you have?

shot-codes commented 2 years ago

Here you go

{
    "variables":
    {
        "base_hue": "hsl(0, 0%, 50%)",
    "text_fg": "hsl(0, 0%, 40%)",
    "tabset_light_bg": "color(var(base_hue) l(87%))",
    "sidebar_bg": "color(var(base_hue) l(93%))",
    "sidebar_row_selected": "color(var(base_hue) l(87%))",
    "sidebar_label": "hsl(0, 0%, 20%)",
    "status_bar_bg": "color(var(base_hue) l(87%))",
    },
    "rules":
    [
    {
        "class": "sidebar_heading",
        "font.size": 13,
        "font.face": "SF Compact Text Regular",
    },
    {
        "class": "sidebar_container",
        "content_margin": [
              -8,
              -30,
              0,
              0
          ]
        },
    {
        "class": "tabset_control",
        "mouse_wheel_switch": false,
        "tab_min_width": 50,
        "tab_height": 24,
        "tab_width": 50,
        "content_margin": [
        -44,
        0
        ]
    },
    ]
}