aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python/qmk/cli/list
AgeCommit message (Collapse)Author
2020-03-13Add decorators for determining keyboard and keymap based on current ↵Gravatar skullydazed
directory (#8191) * Use pathlib everywhere we can * Improvements based on @erovia's feedback * rework qmk compile and qmk flash to use pathlib * style * Remove the subcommand_name argument from find_keyboard_keymap() * add experimental decorators * Create decorators for finding keyboard and keymap based on current directory. Decorators were inspired by @Erovia's brilliant work on the proof of concept.
2020-02-17Use pathlib everywhere we can (#7872)Gravatar skullydazed
* Use pathlib everywhere we can * Update lib/python/qmk/path.py Co-Authored-By: Erovia <Erovia@users.noreply.github.com> * Update lib/python/qmk/path.py Co-Authored-By: Erovia <Erovia@users.noreply.github.com> * Improvements based on @erovia's feedback * rework qmk compile and qmk flash to use pathlib * style * Remove the subcommand_name argument from find_keyboard_keymap() Co-authored-by: Erovia <Erovia@users.noreply.github.com>
2020-02-15Code cleanup, use pathlib, use pytest keyboardGravatar Erovia
Clean up checks and logics that are unnecessary due to MILC updates. Use pathlib instead of os.path for readability. Use the 'pytest' keyboard for the tests. Add community layout for 'handwired/onekey/pytest' so we can test community layouts.
2020-02-15Fix commandline parsing and flake8 findings, rebaseGravatar Erovia
Fixed commandline and config parsing. Thx @xplusplus. Rebased on master and fixed merge conflicts.
2020-02-15Drop bs4 dependency, update docs, minor improvementsGravatar Erovia
2020-02-15Another major refactoring, add documentationGravatar Erovia
Move all useful functions to the qmk module and use the cli subcommand as a wrapper around it. Add both inline comments and documentation.
2020-02-15Fix output formatGravatar Erovia
2020-02-15Try to figure out revision, drop -rv/--revision argumentGravatar Erovia
2020-02-15Fix help message.Gravatar Erovia
2020-02-15Get all buildable keymaps for each revisionGravatar Erovia
The command now return all keymaps that's buildable for a keyboard/revision. If the base directory of a keyboard does not contain a 'rules.mk' file, nothing is returned. If the base directory contains a 'keymaps' directory, those keycaps will be returned for every revision.
2020-02-15Major update to work better with revisionsGravatar Erovia
Find the community keymaps supported by each revision.
2020-02-15CLI: add support for list_keymapsGravatar Erovia
List all the available keymaps for a given keyboard
2019-11-20Add flake8 to our test suite and fix all errors (#7379)Gravatar skullydazed
* Add flake8 to our test suite and fix all errors * Add some documentation
2019-11-12Small CLI cleanupsGravatar skullY
* yapf changes * Fix the cformat test * Make the normpath test work when run from / * `qmk config`: Mark `--read-only` as arg_only
2019-10-07[CLI] Add `qmk list_keyboards` (#6927)Gravatar Dan McClain
`list_keyboards` replicates the `make list-keyboards` by globbing for all paths that include `rules.mk` and then removing the paths that include `keymaps`. This basis of this cli command could be reused in the future as a util, but is not done so here since this would be the only place that would use it currently Resolves #6911