Dr. André Müller
Dr. André Müller
There was a syntax error when using the add_document() RESOURCE_FILES parameter.
After changing my Options/Files & Links/Excluded files in Obisidian 1.4.16 (macOS) and restarting Obsidian all tasks found in subfolders of the excluded files are shown. So the todo plugin seems...
The following code snipped generates compiler errors: ``` #include #include #include using namespace boost::accumulators; using namespace boost; typedef accumulator_set histogram_type; int main(int argc, char*argv[]) { histogram_type hist; hist(1.0); hist(2.0); return...
Proposed a backward compatible solution to https://github.com/spf13/cobra/issues/2130 Hereto a new flag `ErrorOnUnknownSubcommand` was added to the `Command` struct. Unit tests were added accordingly (TestSubcommandExecuteMissingSubcommand and TestSubcommandExecuteMissingSubcommandWithErrorOnUnknownSubcommand. Fixes #1156 #2130