Right now the hlink command prompt is hlink $. This is nice and simple, but for long-running hlink processes it can be hard to remember which config file is running. To fix this, let's include the config file name in the command prompt. Something like hlink (config-name)$ seems nice.
We can do this by setting Main.prompt when we create Main instead of defining it as a class-level variable.
Right now the hlink command prompt is
hlink $
. This is nice and simple, but for long-running hlink processes it can be hard to remember which config file is running. To fix this, let's include the config file name in the command prompt. Something likehlink (config-name)$
seems nice.We can do this by setting
Main.prompt
when we createMain
instead of defining it as a class-level variable.