mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 02:30:07 +00:00
[CLI] list-keymaps
/list-layouts
: Check keyboard passed in (#15204)
* [CLI] `list-keymaps`/`list-layouts`: Check keyboard passed in * Update lib/python/qmk/cli/list/keymaps.py Co-authored-by: Joel Challis <git@zvecr.com> * Update lib/python/qmk/cli/list/layouts.py Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Joel Challis <git@zvecr.com>
This commit is contained in:
parent
cd50fdf7ee
commit
aee10ccc5c
2 changed files with 10 additions and 0 deletions
|
@ -13,5 +13,10 @@ from qmk.keyboard import keyboard_completer, keyboard_folder
|
||||||
def list_keymaps(cli):
|
def list_keymaps(cli):
|
||||||
"""List the keymaps for a specific keyboard
|
"""List the keymaps for a specific keyboard
|
||||||
"""
|
"""
|
||||||
|
if not cli.config.list_keymaps.keyboard:
|
||||||
|
cli.log.error('Missing required arguments: --keyboard')
|
||||||
|
cli.subcommands['list-keymaps'].print_help()
|
||||||
|
return False
|
||||||
|
|
||||||
for name in qmk.keymap.list_keymaps(cli.config.list_keymaps.keyboard):
|
for name in qmk.keymap.list_keymaps(cli.config.list_keymaps.keyboard):
|
||||||
print(name)
|
print(name)
|
||||||
|
|
|
@ -13,6 +13,11 @@ from qmk.info import info_json
|
||||||
def list_layouts(cli):
|
def list_layouts(cli):
|
||||||
"""List the layouts for a specific keyboard
|
"""List the layouts for a specific keyboard
|
||||||
"""
|
"""
|
||||||
|
if not cli.config.list_layouts.keyboard:
|
||||||
|
cli.log.error('Missing required arguments: --keyboard')
|
||||||
|
cli.subcommands['list-layouts'].print_help()
|
||||||
|
return False
|
||||||
|
|
||||||
info_data = info_json(cli.config.list_layouts.keyboard)
|
info_data = info_json(cli.config.list_layouts.keyboard)
|
||||||
for name in sorted(info_data.get('community_layouts', [])):
|
for name in sorted(info_data.get('community_layouts', [])):
|
||||||
print(name)
|
print(name)
|
||||||
|
|
Loading…
Reference in a new issue