remove cromulate. it has outlived its purpose
parent
cb3e537b38
commit
3141ecbec2
@ -1,36 +0,0 @@
|
||||
cromulate
|
||||
=========
|
||||
|
||||
Tags: `tag/productivity`, `tag/units`, `tag/adventure`
|
||||
:dfhack-keybind:`cromulate`
|
||||
|
||||
:index:`Collects all widgets into a frobozz electric cromufiler.
|
||||
<cromulate; Collects all widgets into a frobozz electric cromufiler.>` You might
|
||||
want to do this if you discover that your widgets have become decromulated. It
|
||||
is safe to run this command periodically even if you are unsure if that's the
|
||||
case.
|
||||
|
||||
Usage::
|
||||
|
||||
cromulate [all|here] [<options>]
|
||||
|
||||
When run without parameters, it lists all your widgets. Add the ``all`` keyword
|
||||
to collect all widgets into the cromufiler, or the ``here`` keyword to just
|
||||
collect those under the cursor.
|
||||
|
||||
Options:
|
||||
|
||||
- ``-d``, ``--destroy``
|
||||
Destroy the widgets instead of collecting them into the cromufiler.
|
||||
- ``-q``, ``--quiet``
|
||||
Don't display any informational output. Errors will still be printed to the
|
||||
console.
|
||||
|
||||
Examples:
|
||||
|
||||
- ``cromulate``
|
||||
Lists all widgets and their positions
|
||||
- ``cromlate all``
|
||||
Gather all widgets into the cromufiler
|
||||
- ``cromulate here --destroy``
|
||||
Destroys the widgets under the cursor
|
@ -1,26 +0,0 @@
|
||||
#include "Core.h"
|
||||
#include <Console.h>
|
||||
#include <Export.h>
|
||||
#include <PluginManager.h>
|
||||
|
||||
using namespace DFHack;
|
||||
using namespace df::enums;
|
||||
|
||||
DFHACK_PLUGIN("cromulate");
|
||||
|
||||
command_result cromulate (color_ostream &out, std::vector <std::string> & parameters);
|
||||
|
||||
DFhackCExport command_result plugin_init (color_ostream &out, std::vector <PluginCommand> &commands) {
|
||||
commands.push_back(PluginCommand("cromulate",
|
||||
"in-cpp plugin short desc", //to use one line in the ``[DFHack]# ls`` output
|
||||
cromulate));
|
||||
return CR_OK;
|
||||
}
|
||||
|
||||
DFhackCExport command_result plugin_shutdown (color_ostream &out) {
|
||||
return CR_OK;
|
||||
}
|
||||
|
||||
command_result cromulate (color_ostream &out, std::vector <std::string> ¶meters) {
|
||||
return CR_OK;
|
||||
}
|
Loading…
Reference in New Issue