about summary refs log tree commit diff
path: root/search.c
Commit message (Collapse)AuthorAgeFilesLines
* cvsimportokan2013-12-111-2/+2
|\
| * Stash Class and WM Hints in client_ctxokan2013-12-111-2/+2
| |
* | cvsimport dh-gapsnapokan2013-12-081-1/+1
|\|
| * If not using sticky mode (the default), clients aren't automagically cn-bisectgtkbugokan2013-12-081-1/+1
| | | | | | | | | | assigned a group, thus cc->group will be NULL - fix the client group shortcut in menu lists; crash reported by Christian Neukirchen.
* | cvsimportokan2013-12-021-2/+2
|\|
| * Prepend the group shortcut in the client search menu; from Thomas Adam.okan2013-12-021-2/+2
| | | | | | | | Likewise, prepend shortcut in unhide menu.
* | cvsimportokan2013-04-301-1/+3
|\|
| * missing protookan2013-04-301-1/+3
| |
* | cvsimportokan2013-04-051-6/+11
|\|
| * add missing proto; replace magic numberokan2013-04-051-2/+5
| |
| * zap stray whitespaceokan2013-04-051-2/+2
| |
| * honor PATH search order for exec; from Andres Perera.okan2013-04-031-2/+4
| |
* | cvsimportokan2013-03-091-3/+2
|\|
| * replace handrolled for loop with TAILQ_FOREACH; from andres.p@zoho.comokan2013-03-091-3/+2
| |
* | Use vendored queue.h everywhereChristian Neukirchen2012-11-261-1/+1
|/
* sortokan2012-11-091-2/+2
|
* tab completion support for menus; from Alexander Polakov.okan2012-11-071-0/+48
| | | | ok sthen@ on an older incarnation
* We are inconsistent when it comes to function returns, so just go allokan2011-07-251-4/+5
| | | | | | the way with the cwm specific parts. ok oga@
* tag and comment cleanup; ok oga@okan2011-05-111-1/+2
|
* introduce nitems macro, with the appropriate ifndef.okan2011-03-221-5/+2
| | | | ok oga@
* spacing nitsokan2010-09-251-9/+2
|
* pull all non-X11 headers from calmwm.h and place them only where theyokan2009-12-151-0/+9
| | | | | | are required. encourged to go all the way by oga@
* pull these headers only into files that need them.okan2009-12-151-0/+1
| | | | ok oga@
* merge the 2 common header files; specific includes to be pulled out asokan2009-12-151-1/+1
| | | | | | separate commits. ok oga@
* use fnmatch to glob the entries in the exec menu.oga2009-06-261-2/+4
| | | | | | | | allows shell globbing constructs such as *ctl, etc in the exec menu (m-? by default). Adapted from a diff from Thomas Pfaff, okan@ got almost the same diff as me when reworking it, and oked this one.
* move like defines to a central, logical location; no binary change.okan2009-06-171-2/+0
| | | | aok oga@
* nuke the leading underscore notation for local static functions - thereokan2009-05-181-7/+7
| | | | | | are far better ways to know. "go for it" oga@
* Display the current window title not a previous one in the case ofoga2008-09-221-1/+1
| | | | | ``show all'' in the window search dialogue. Noticed and diff from Tim van der Molen, thanks!
* Keep the exec menu entries sorted.canacar2008-09-031-3/+13
| | | | Go for it okan@
* spacing, declaration lineup to be consistent throughout cwm,okan2008-07-111-12/+19
| | | | | | readability, and a bit of knf. ok oga@
* Pull out the behaviour in grab_label and search_start into one utilityoga2008-05-201-265/+0
| | | | | | | | | | | function menu_filter(). The plan is to eventually merge in grab_menu too. Shrinks the code a fair bit. Also, change XMaskEvent for XWindowEvent to prevent getting exposes for other windows. This is particuarly noticable on slow machines with a LOT of xterms (todd, you're an odd man). ok okan@, todd@.
* stop normalizing search input; searching and matching are stillokan2008-05-191-1/+1
| | | | | | | | | case-insensitive. since this was the only use of normalizing input, simplify as well. allows one to exec with mixed case unmatched commands. "works for me" oga@
* KNF, no binary change.oga2008-05-151-4/+4
| | | | From Pierre Riteau. Thanks!
* hit it with the knf stick.oga2008-04-151-8/+8
|
* Remove a bunch of unused variables and incorrect comments.oga2008-03-221-15/+1
| | | | "ok with me" okan@.
* huge amount of cleanup and dead code removal.oga2008-01-161-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | full description of changes: -remove fontlist, and all associated structures/calls, it's not needed. this also removes any doubt about leftover 9wm code (the list was borrowed from it). Since cwm now uses Xft for everything, the legacy font handling is just not needed. -add /* FALLTHROUGH */ comments into grab_{label,menu}. I actually didn't intend grab_menu to be a fallthrough, but it actually works quite well there, so remove the extra rectangle drawing. I love it when that happens. -remove a couple of unused prototypes that were obviously missed before. -remove a bunch of commented out or if 0ed out code. It doesn't look to be coming back anytime soon. -several functions returned an int, but this was never checked. most of them only failed if they failed to grab the pointer (thus the internal state didn't change), so just make them void and return early if this is the case. -remove several unused functions and some useless variables. knocks something like 200bytes off the stripped binary size for me. ok marc@, tested by several others.
* - Remove the "all rights reserved" tag at the top of most of the sourceoga2008-01-111-1/+11
| | | | | | | | | | | | | | | | | | files, and replace them with the actual ISC license. - add license to the manpage (it was lacking before) - correct license statement in the README Permission given by Marius (copyright holder): "1. please replace with the standard ISC license 2. you may add the ISC license to the man page 3. feel free to replace the information in the README as well" and Dros (copyright holder for group.c): "Please switch group.c to the ISC License." ok ian@
* When cycling, only the end of the window names will be printed if thejasper2007-10-021-0/+5
| | | | | | | | name is too long. so show the beginning instead. from Pierre Riteau <pierre.riteau at free.fr> "looks correct" matthieu@
* modify "exec" dialog so that it auto-completes based on executables inniallo2007-06-261-14/+39
| | | | | | | | | | | | _PATH_DEFPATH add an "ssh-to" dialog which auto-completes based on contents of ~/.ssh/known_hosts (M-.) testing and eyeballing by Simon Kuhnle <simonkuhnle at web.de>, todd@, pedro@ mk@ and David Cathcart <david at cathcart.cx> ok todd@
* convert globals from G_foo to Foo, as per TODO.jasper2007-05-281-17/+17
| | | | "looks good" pedro@, ok matthieu@
* Initial revisionbernd2007-04-271-0/+450