commit: 0228806ae8d1f12fc2c254b310c73076cfbde0d5
parent 1b5ae7aa71cbdf055877470e40c3d78aebaab619
Author: jack <jack@pngu.org>
Date: Wed, 11 Dec 2024 13:28:30 -0700
Change `new-keymap` keymap name prompt (#24701)
Diffstat:
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/lib/python/qmk/cli/new/keymap.py b/lib/python/qmk/cli/new/keymap.py
@@ -23,19 +23,17 @@ def validate_keymap_name(name):
def prompt_keyboard():
prompt = """{fg_yellow}Select Keyboard{style_reset_all}
-If you`re unsure you can view a full list of supported keyboards with {fg_yellow}qmk list-keyboards{style_reset_all}.
+If you're unsure you can view a full list of supported keyboards with {fg_yellow}qmk list-keyboards{style_reset_all}.
Keyboard Name? """
-
return question(prompt)
def prompt_user():
prompt = """
{fg_yellow}Name Your Keymap{style_reset_all}
-Used for maintainer, copyright, etc
-Your GitHub Username? """
+Keymap name? """
return question(prompt, default=git_get_username())