Sublime Forum

Hotkey selectevity works

#1

Hi. I’m using Sublime text 3.3047
And i have some hotkeys for manipulating panes size. And Hotkeys works badly. Sometimes works only win+left. Sometimes works only left and right.

[code]{
“keys”: “super+right”],
“command”: “set_layout”,
“args”:
{
“cols”: [0.0, 0.25, 1.0],
“rows”: [0.0, 1.0],
“cells”: [0, 0, 1, 1], [1, 0, 2, 1]]
}
},
{
“keys”: “super+left”],
“command”: “set_layout”,
“args”:
{
“cols”: [0.0, 0.75, 1.0],
“rows”: [0.0, 1.0],
“cells”: [0, 0, 1, 1], [1, 0, 2, 1]]
}
},

{
    "keys": "super+up"],
    "command": "set_layout",
    "args":
    {
        "cols": [0.0, 0.5, 1.0],
        "rows": [0.0, 1.0],
        "cells": [0, 0, 1, 1], [1, 0, 2, 1]]
    }
},
{
    "keys": "super+down"],
    "command": "set_layout",
    "args":
    {
        "cols": [0.0, 1.0],
        "rows": [0.0, 1.0],
        "cells": [0, 0, 1, 1], [1, 0, 2, 1]]
    }
},[/code]

After enabling sublime.log_commands(True) in console commands not showing for not worked combination.
Any solution?

0 Likes

#2

Try sublime.log_input(True) to see what commands are being seen by the editor. It’s possible you have some global key binding that is preventing it from working. In fact, in W7, I believe super+up will maximize your current window and super+down will minimize it, though i could be wrong about that.

0 Likes

#3

Now i’m using alt+right alt+left. And all working.
I’m use Archlinux with KDE

0 Likes