7
7
Plugins are very similar to brz core functionality. They can import
9
9
but most plugins supply new commands.
14
14
To create a command, make a new object that derives from
16
16
your command. If you create a command whose name contains an underscore,
17
17
it will appear in the UI with the underscore turned into a hyphen. For
18
18
example, `cmd_baz_import` will appear as `baz-import`. For examples of how
19
19
to write commands, please see ``builtins.py``.
21
21
Once you've created a command you must register the command with
23
23
command when your file is imported, otherwise brz will not see it.