Allow cwm(1) to cycle through windows of the same window class as the
active window; default key binding to M-grave, respectively Alt-Tilde, like other window managers have as well. from Simon Dassow
This commit is contained in:
6
conf.c
6
conf.c
@@ -136,6 +136,10 @@ static const struct {
|
||||
(CWM_CYCLE_FORWARD | CWM_CYCLE_INGROUP)) },
|
||||
{ FUNC_SC(window-rcycle-ingroup, client_cycle,
|
||||
(CWM_CYCLE_REVERSE | CWM_CYCLE_INGROUP)) },
|
||||
{ FUNC_SC(window-cycle-inclass, client_cycle,
|
||||
(CWM_CYCLE_FORWARD | CWM_CYCLE_INCLASS)) },
|
||||
{ FUNC_SC(window-rcycle-inclass, client_cycle,
|
||||
(CWM_CYCLE_REVERSE | CWM_CYCLE_INCLASS)) },
|
||||
|
||||
{ FUNC_SC(group-cycle, group_cycle, (CWM_CYCLE_FORWARD)) },
|
||||
{ FUNC_SC(group-rcycle, group_cycle, (CWM_CYCLE_REVERSE)) },
|
||||
@@ -220,6 +224,8 @@ static const struct {
|
||||
{ "C-slash", "menu-cmd" },
|
||||
{ "M-Tab", "window-cycle" },
|
||||
{ "MS-Tab", "window-rcycle" },
|
||||
{ "M-grave", "window-cycle-inclass" },
|
||||
{ "MS-grave", "window-rcycle-inclass" },
|
||||
{ "CM-n", "window-menu-label" },
|
||||
{ "CM-x", "window-close" },
|
||||
{ "CM-a", "group-toggle-all" },
|
||||
|
||||
Reference in New Issue
Block a user