As usual while waiting for the next release - don't forget to check the nightly builds in the forum.
Index: D:/Devel/CodeBlocks/trunk/src/src/main.cpp===================================================================--- D:/Devel/CodeBlocks/trunk/src/src/main.cpp (revision 1886)+++ D:/Devel/CodeBlocks/trunk/src/src/main.cpp (working copy)@@ -1104,7 +1104,9 @@ default: { cbMimePlugin* plugin = Manager::Get()->GetPluginManager()->GetMIMEHandlerForFile(filename);- return plugin && plugin->OpenFile(filename) == 0;+ bool res = plugin && plugin->OpenFile(filename) == 0;+ if (res) AddToRecentFilesHistory(filename);+ return res; } } return true;