summary refs log tree commit diff
diff options
context:
space:
mode:
authorokan <okan>2015-08-20 14:45:15 +0000
committerokan <okan>2015-08-20 14:45:15 +0000
commit54bbd88e5108cc44822763038bb9bebb4cf4dcbb (patch)
tree96ceafbccff1f1c6e282163e177cf3441b163194
parent0d13b7c2205bd40d9fd4db016c8cf96f620c4f8d (diff)
downloadcwm-54bbd88e5108cc44822763038bb9bebb4cf4dcbb.tar.gz
cwm-54bbd88e5108cc44822763038bb9bebb4cf4dcbb.tar.xz
cwm-54bbd88e5108cc44822763038bb9bebb4cf4dcbb.zip
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.
-rw-r--r--conf.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/conf.c b/conf.c
index 38c8c8c..1ba2c54 100644
--- a/conf.c
+++ b/conf.c
@@ -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" },