forked from mfulz_github/qmk_firmware
		
	 299008be36
			
		
	
	
		299008be36
		
			
		
	
	
	
	
		
			
			* Add support for qmk_configurator style aliases * add the keyboard aliases to the api data * add support for a keyboard metadata file * make flake8 happy
		
			
				
	
	
		
			18 lines
		
	
	
		
			550 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			550 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_folder
 | |
| 
 | |
| 
 | |
| @cli.argument("-kb", "--keyboard", type=keyboard_folder, 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
 | |
|     """
 | |
|     for name in qmk.keymap.list_keymaps(cli.config.list_keymaps.keyboard):
 | |
|         print(name)
 |