I want to toggle custom settings for my theme by shortcut. I wrote this keybind:
{
"keys": ["alt+w"],
"command": "toggle_setting",
"args":
{
"setting": "theme_arc_top_border",
},
},
But this don’t work. When I use “toggle_setting” with default settings(word_wrap for example) - it works good. When I manually toggle “theme_arc_top_border” in user settings file - theme react too.
Why don’t my keybind work? How can I set up a necessary behavior?