diff options
-rw-r--r-- | calmwm.h | 2 | ||||
-rw-r--r-- | menu.c | 39 | ||||
-rw-r--r-- | search.c | 7 |
3 files changed, 0 insertions, 48 deletions
@@ -472,8 +472,6 @@ void search_match_exec(struct menu_q *, struct menu_q *, char *); void search_match_group(struct menu_q *, struct menu_q *, char *); -void search_match_path(struct menu_q *, struct menu_q *, - char *); void search_match_text(struct menu_q *, struct menu_q *, char *); void search_match_wm(struct menu_q *, struct menu_q *, @@ -76,7 +76,6 @@ static void menu_draw(struct menu_ctx *, struct menu_q *, static void menu_draw_entry(struct menu_ctx *, struct menu_q *, int, int); static int menu_calc_entry(struct menu_ctx *, int, int); -static struct menu *menu_complete_path(struct menu_ctx *); static int menu_keycode(XKeyEvent *, enum ctltype *, char *); struct menu * @@ -189,34 +188,6 @@ out: } static struct menu * -menu_complete_path(struct menu_ctx *mc) -{ - struct screen_ctx *sc = mc->sc; - struct menu *mi, *mr; - struct menu_q menuq; - int mflags = (CWM_MENU_DUMMY); - - mr = xcalloc(1, sizeof(*mr)); - - TAILQ_INIT(&menuq); - - if ((mi = menu_filter(sc, &menuq, mc->searchstr, NULL, mflags, - search_match_path, search_print_text)) != NULL) { - mr->abort = mi->abort; - mr->dummy = mi->dummy; - if (mi->text[0] != '\0') - snprintf(mr->text, sizeof(mr->text), "%s \"%s\"", - mc->searchstr, mi->text); - else if (!mr->abort) - strlcpy(mr->text, mc->searchstr, sizeof(mr->text)); - } - - menuq_clear(&menuq); - - return mr; -} - -static struct menu * menu_handle_key(XEvent *e, struct menu_ctx *mc, struct menu_q *menuq, struct menu_q *resultq) { @@ -277,16 +248,6 @@ menu_handle_key(XEvent *e, struct menu_ctx *mc, struct menu_q *menuq, case CTL_TAB: if ((mi = TAILQ_FIRST(resultq)) != NULL) { /* - * - We are in exec_path menu mode - * - It is equal to the input - * We got a command, launch the file menu - */ - if ((mc->flags & CWM_MENU_FILE) && - (strncmp(mc->searchstr, mi->text, - strlen(mi->text))) == 0) - return menu_complete_path(mc); - - /* * Put common prefix of the results into searchstr */ (void)strlcpy(mc->searchstr, @@ -206,13 +206,6 @@ search_match_exec(struct menu_q *menuq, struct menu_q *resultq, char *search) } void -search_match_path(struct menu_q *menuq, struct menu_q *resultq, char *search) -{ - TAILQ_INIT(resultq); - match_path_type(resultq, search, PATH_ANY); -} - -void search_match_text(struct menu_q *menuq, struct menu_q *resultq, char *search) { struct menu *mi; |