Put plugins after globals when writing metadata

This commit is contained in:
Oliver Hamlet
2017-02-06 18:02:18 +00:00
parent 174dea8b8d
commit 2b4cb90657
+1 -1
View File
@@ -73,8 +73,8 @@ void MetadataList::Save(const boost::filesystem::path& filepath) {
yout.SetIndent(2);
yout << YAML::BeginMap
<< YAML::Key << "bash_tags" << YAML::Value << bashTags_
<< YAML::Key << "plugins" << YAML::Value << Plugins()
<< YAML::Key << "globals" << YAML::Value << messages_
<< YAML::Key << "plugins" << YAML::Value << Plugins()
<< YAML::EndMap;
boost::filesystem::ofstream uout(filepath);