------------------
Changed default templates. In 0.1.0, the templates were:
.. code:: python
DEFAULT_TEMPLATES = {
'start': 'Start {label}',
'finish': 'Finish {label}',
}
These defaults have been changed to:
.. code:: python
DEFAULT_TEMPLATES = {
'start': 'Enter {label}',
'finish': 'Exit {label}',
'function.start': 'Call `{label}({arguments})`',
'function.finish': 'Return from `{label}`',
}