 aee10ccc5c
			
		
	
	
		aee10ccc5c
		
			
		
	
	
	
	
		
			
			* [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>
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			784 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			784 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """List the keymaps for a specific keyboard
 | |
| """
 | |
| from milc import cli
 | |
| 
 | |
| import qmk.keymap
 | |
| from qmk.decorators import automagic_keyboard
 | |
| from qmk.keyboard import keyboard_completer, keyboard_folder
 | |
| 
 | |
| 
 | |
| @cli.argument("-kb", "--keyboard", type=keyboard_folder, completer=keyboard_completer, help="Specify keyboard name. Example: 1upkeyboards/1up60hse")
 | |
| @cli.subcommand("List the keymaps for a specific keyboard")
 | |
| @automagic_keyboard
 | |
| def list_keymaps(cli):
 | |
|     """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):
 | |
|         print(name)
 |