diff options
author | okan | 2013-12-02 19:30:27 +0000 |
---|---|---|
committer | okan | 2013-12-02 19:30:27 +0000 |
commit | cf859c3404f849ec7907cfbc1e0f89e496b4a823 (patch) | |
tree | 9427e817aff19d9ed1231c9a72b923a044037dd8 /search.c | |
parent | 1384341ce93769fbdfac062a89bec7d94bd205b9 (diff) | |
download | cwm-cf859c3404f849ec7907cfbc1e0f89e496b4a823.tar.gz |
Prepend the group shortcut in the client search menu; from Thomas Adam.
Likewise, prepend shortcut in unhide menu.
Diffstat (limited to 'search.c')
-rw-r--r-- | search.c | 6 |
1 files changed, 3 insertions, 3 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: search.c,v 1.31 2013/04/30 21:11:07 okan Exp $ + * $OpenBSD: search.c,v 1.32 2013/12/02 19:30:27 okan Exp $ */ #include <sys/param.h> @@ -142,8 +142,8 @@ search_print_client(struct menu *mi, int list) if (list) cc->matchname = cc->name; - (void)snprintf(mi->print, sizeof(mi->print), "%c%s", flag, - cc->matchname); + (void)snprintf(mi->print, sizeof(mi->print), "(%d) %c%s", + cc->group->shortcut, flag, cc->matchname); if (!list && cc->matchname != cc->name && strlen(mi->print) < sizeof(mi->print) - 1) { |