Sublime Forum

Ubuntu 17.04 Switching view to 2 columns with alt+shift+2 not working

#21

I have same problem, but on Windows. Nothing was helpful so far. How to fix this?

0 Likes

#22

Run this command on your Sublime Text console and monitor how it respond to your keypresses:

sublime.log_input(True); sublime.log_commands(True);

Then, close/kill your other Windows applications and test whether Sublime Access the keys.

Alternatively, you can also run Sublime Text on Administrator mode, which should give him a greater level of exclusivity with your keyboard. You can read more about this on:

0 Likes

#23

I have the same problem and find a working solution (at least for me).
I use a french layout keyboard actually and thus the key binding must be customized as follow:

        "keys": ["alt+shift+&"],
        "command": "set_layout",
        "args":
        {
            "cols": [0.0, 1.0],
            "rows": [0.0, 1.0],
            "cells": [[0, 0, 1, 1]]
        }
    },
    {
        "keys": ["alt+shift+é"],
        "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]]
        }
    },

Indeed, symbols ‘1’ and ‘&’ are on the same key (’&’ below and ‘1’ above) as well as ‘2’ and ‘é’
Note: I found it out thanks to

sublime.log_input(True);
1 Like