diff options
author | okan | 2015-07-12 14:31:47 +0000 |
---|---|---|
committer | okan | 2015-07-12 14:31:47 +0000 |
commit | b05f7a824f98fee35cc1fd31eae62460a743075c (patch) | |
tree | ee572128d6bb3c2f96ba7393cd25d10e2064b68d /calmwm.h | |
parent | 1c42563c9b3c1a385b355c4ddc189364d05b4257 (diff) | |
download | cwm-b05f7a824f98fee35cc1fd31eae62460a743075c.tar.gz |
introduce 'groupsearch' for group menu search; matches on either group
number/shortcut and/or name.
Diffstat (limited to 'calmwm.h')
-rw-r--r-- | calmwm.h | 4 |
1 files changed, 3 insertions, 1 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: calmwm.h,v 1.296 2015/06/30 18:54:12 okan Exp $ + * $OpenBSD: calmwm.h,v 1.297 2015/07/12 14:31:47 okan Exp $ */ #ifndef _CALMWM_H_ @@ -450,6 +450,7 @@ void search_match_text(struct menu_q *, struct menu_q *, char *); void search_print_client(struct menu *, int); void search_print_cmd(struct menu *, int); +void search_print_group(struct menu *, int); struct geom screen_apply_gap(struct screen_ctx *, struct geom); struct screen_ctx *screen_find(Window); @@ -496,6 +497,7 @@ void kbfunc_cwm_status(struct client_ctx *, union arg *); void kbfunc_exec(struct client_ctx *, union arg *); void kbfunc_lock(struct client_ctx *, union arg *); void kbfunc_menu_cmd(struct client_ctx *, union arg *); +void kbfunc_menu_group(struct client_ctx *, union arg *); void kbfunc_ssh(struct client_ctx *, union arg *); void kbfunc_term(struct client_ctx *, union arg *); void kbfunc_tile(struct client_ctx *, union arg *); |