Zsolt Udvari <[EMAIL PROTECTED]> wrote: > How can I switch workspace by name? I've searched in the > mailing list and I found this:
With my three workspaces named "Fullscreen", "Hidden" and "Split"
this is how I do it.
defbindings("WScreen",
{
submap(PREFIX,
{
kpress("F", "ioncore.lookup_region('Fullscreen'):goto()"),
kpress("H", "ioncore.lookup_region('Hidden'):goto()"),
kpress("S", "ioncore.lookup_region('Split'):goto()"),
}
),
}
)
