diff --git a/docs/plugins/cromulate.rst b/docs/plugins/cromulate.rst deleted file mode 100644 index 6e659989c..000000000 --- a/docs/plugins/cromulate.rst +++ /dev/null @@ -1,36 +0,0 @@ -cromulate -========= - -Tags: `tag/productivity`, `tag/units`, `tag/adventure` -:dfhack-keybind:`cromulate` - -:index:`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] [] - -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 diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index b9d63839e..283f74fad 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -105,7 +105,6 @@ if(BUILD_SUPPORTED) dfhack_plugin(command-prompt command-prompt.cpp) dfhack_plugin(confirm confirm.cpp LINK_LIBRARIES lua) dfhack_plugin(createitem createitem.cpp) - dfhack_plugin(cromulate cromulate.cpp) dfhack_plugin(cursecheck cursecheck.cpp) dfhack_plugin(cxxrandom cxxrandom.cpp LINK_LIBRARIES lua) dfhack_plugin(deramp deramp.cpp) diff --git a/plugins/cromulate.cpp b/plugins/cromulate.cpp deleted file mode 100644 index 7ed9ed115..000000000 --- a/plugins/cromulate.cpp +++ /dev/null @@ -1,26 +0,0 @@ -#include "Core.h" -#include -#include -#include - -using namespace DFHack; -using namespace df::enums; - -DFHACK_PLUGIN("cromulate"); - -command_result cromulate (color_ostream &out, std::vector & parameters); - -DFhackCExport command_result plugin_init (color_ostream &out, std::vector &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 ¶meters) { - return CR_OK; -}