summary refs log tree commit diff
path: root/kbfunc.c
diff options
context:
space:
mode:
authorokan <okan>2015-11-12 21:28:03 +0000
committerokan <okan>2015-11-12 21:28:03 +0000
commit323672ace778a61f6f51032453f781d50701e349 (patch)
treedc898821d7b10259b2355d61d6305766902e1afd /kbfunc.c
parent4aca2b876485fa011298c9d7c0fe5b296b2ed122 (diff)
downloadcwm-323672ace778a61f6f51032453f781d50701e349.tar.gz
cwm-323672ace778a61f6f51032453f781d50701e349.tar.xz
cwm-323672ace778a61f6f51032453f781d50701e349.zip
more client vs screen context differences
Diffstat (limited to 'kbfunc.c')
-rw-r--r--kbfunc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/kbfunc.c b/kbfunc.c
index e5e0708..c3c1050 100644
--- a/kbfunc.c
+++ b/kbfunc.c
@@ -450,25 +450,25 @@ kbfunc_client_delete(struct client_ctx *cc, union arg *arg)
 }
 
 void
-kbfunc_client_group(struct client_ctx *cc, union arg *arg)
+kbfunc_group_toggle(struct client_ctx *cc, union arg *arg)
 {
 	group_hidetoggle(cc->sc, arg->i);
 }
 
 void
-kbfunc_client_grouponly(struct client_ctx *cc, union arg *arg)
+kbfunc_group_only(struct client_ctx *cc, union arg *arg)
 {
 	group_only(cc->sc, arg->i);
 }
 
 void
-kbfunc_client_cyclegroup(struct client_ctx *cc, union arg *arg)
+kbfunc_group_cycle(struct client_ctx *cc, union arg *arg)
 {
 	group_cycle(cc->sc, arg->i);
 }
 
 void
-kbfunc_client_nogroup(struct client_ctx *cc, union arg *arg)
+kbfunc_group_alltoggle(struct client_ctx *cc, union arg *arg)
 {
 	group_alltoggle(cc->sc);
 }