summaryrefslogtreecommitdiffstats
path: root/lib/python/qmk/search.py
Commit message (Collapse)AuthorAgeFilesLines
* Allow for `qmk mass-compile all:<keymap>` (#22116)Nick Brassel2023-09-291-69/+135
| | | | Co-authored-by: Joel Challis <git@zvecr.com>
* `qmk find`: Fix handling of functions in filters (#21090)Sergey Vlasov2023-05-301-4/+4
| | | | | | | | | | | | | | | | | | | | Functions in filters did not work properly except when used in the last (or only) filter. The problem was caused by the peculiarity of the `lambda` behavior in Python — any variables from the outer scope are captured only by reference, therefore any subsequent reassignment of those variables is propagated to all lambdas created earlier in the same scope. Together with the laziness of `filter()` (it returns an iterator which performs filtering on demand) this resulted in all function filters using the values of the `key` and `value` variables which correspond to the last filter in the sequence, therefore the result of filtering was wrong if some filter with a function was not the last one in the sequence. Apparently the shortest way to make a Python lambda capture some variables by value is to add arguments with default values for such variables (default values are evaluated when the lambda is created, and any subsequent reassignments in the outer scope no longer changes them). This makes filters with functions work properly even when such filters are not at the last position in the sequence.
* Fix up `qmk find` when not specifying filters. (#21059)Nick Brassel2023-05-271-1/+1
|
* `qmk find`: usability improvements (#20440)Ryan2023-05-201-15/+41
|
* Add `qmk find` command, reuse logic for `qmk mass-compile`. (#20139)Nick Brassel2023-03-161-0/+99