diff options
author | okan | 2015-08-20 14:45:15 +0000 |
---|---|---|
committer | okan | 2015-08-20 14:45:15 +0000 |
commit | e3a3da1896c03cbca5868629f6fc5bdcc09c3b31 (patch) | |
tree | 9c06fc5696b4cfbb1aff0fdcc9771d5259d173f8 /conf.c | |
parent | b05f7a824f98fee35cc1fd31eae62460a743075c (diff) | |
download | cwm-e3a3da1896c03cbca5868629f6fc5bdcc09c3b31.tar.gz |
Alter big move and resize bindings to match what's in cwm(1);
functionally the same, but re-binding should be based on default
bindings. Matches other similiar bindings.
Discovered by a portable user.
Diffstat (limited to '')
-rw-r--r-- | conf.c | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: conf.c,v 1.191 2015/07/12 14:31:47 okan Exp $ + * $OpenBSD: conf.c,v 1.192 2015/08/20 14:45:15 okan Exp $ */ #include <sys/types.h> @@ -224,18 +224,18 @@ static const struct { { "M-j", "movedown" }, { "M-k", "moveup" }, { "M-l", "moveright" }, - { "M-H", "bigmoveleft" }, - { "M-J", "bigmovedown" }, - { "M-K", "bigmoveup" }, - { "M-L", "bigmoveright" }, + { "MS-h", "bigmoveleft" }, + { "MS-j", "bigmovedown" }, + { "MS-k", "bigmoveup" }, + { "MS-l", "bigmoveright" }, { "CM-h", "resizeleft" }, { "CM-j", "resizedown" }, { "CM-k", "resizeup" }, { "CM-l", "resizeright" }, - { "CM-H", "bigresizeleft" }, - { "CM-J", "bigresizedown" }, - { "CM-K", "bigresizeup" }, - { "CM-L", "bigresizeright" }, + { "CMS-h", "bigresizeleft" }, + { "CMS-j", "bigresizedown" }, + { "CMS-k", "bigresizeup" }, + { "CMS-l", "bigresizeright" }, { "C-Left", "ptrmoveleft" }, { "C-Down", "ptrmovedown" }, { "C-Up", "ptrmoveup" }, |