sublime-text-shell-command icon indicating copy to clipboard operation
sublime-text-shell-command copied to clipboard

alt+shift+1 overrides default layout hotkey

Open mvoidex opened this issue 11 years ago • 4 comments

alt+shift+1 is used to set single layout

mvoidex avatar Dec 16 '14 16:12 mvoidex

It should not be used at all by this plugin, but as a temporary solution you can add this to your user key bindings:

{
    "keys": ["alt+shift+1"],
    "command": "set_layout",
    "args": {
        "cols": [0, 1],
        "rows": [0, 1],
        "cells": [[0, 0, 1, 1]]
    }
},

p3lim avatar Feb 28 '15 23:02 p3lim

Agreed, was quite annoying to set that up

eorroe avatar Jun 18 '16 17:06 eorroe

It is, of course, worth changing the defaults, but this is one of the problems with ST...how do you keep track of which key bindings are being used? And what is to stop ST itself creating a new binding in the future that some package has already tried to use?

markbirbeck avatar Sep 16 '18 12:09 markbirbeck

I came across a plugin recently--can't remember which--that didn't have any default bindings, and instead documented how they should be added. It would be worth investigating whether it is now best practice to not include bindings.

markbirbeck avatar Sep 18 '18 10:09 markbirbeck