mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
Replace the console for all OpenSim apps with a new console featuring command
line editing, context sensitive help (press ? at any time), command line history, a new plugin command system and new appender features thet let you type while the console is scrolling. Seamlessly integrates the ICommander interfaces.
This commit is contained in:
@@ -88,6 +88,18 @@ namespace OpenSim.Region.Environment.Modules.Framework.InterfaceCommander
|
||||
}
|
||||
}
|
||||
|
||||
public string ShortHelp()
|
||||
{
|
||||
string help = m_name;
|
||||
|
||||
foreach (CommandArgument arg in m_args)
|
||||
{
|
||||
help += " <" + arg.Name + ">";
|
||||
}
|
||||
|
||||
return help;
|
||||
}
|
||||
|
||||
public void ShowConsoleHelp()
|
||||
{
|
||||
Console.WriteLine("== " + Name + " ==");
|
||||
|
||||
Reference in New Issue
Block a user