Lines Matching refs:command
59 #. Write the code implementing the command.
65 built-in command.
70 Create a Python file to contain your command implementation (see the "Meta >
95 'my-command-name', # gets stored as self.name
96 'one-line help for what my-command-name does', # self.help
99 A multi-line description of my-command.
122 # This gets called when the user runs the command, e.g.:
124 # $ west my-command-name -o FOO BAR
149 - name: my-command-name
151 help: one-line help for what my-command-name does
154 key's value is a sequence of "command descriptors". Each command descriptor
161 runs ``west my-command-name``, since:
171 So, unless your command is explicitly run, west will just load the
183 - name: my-command-name
185 help: one-line help for what my-command-name does
190 - name: a-third-command
192 help: a third command in the same file as command2
196 - :file:`my_west_extension.py` defines extension ``my-command-name``
201 #. ``a-third-command`` with class ``ThirdCommand``
238 That's it; you can now run ``west my-command-name``. Your command's name, help,