MASM32 Downloads
MRU lists are fine on a single instance application but close enough to impossible with a multi-instance tool. You would have to have a separate list display to try and keep track of them and with multiple instances it could become long and messy.
If I was going to implement this in a multi-instance editor it would be a separate list that is added from the top after removing duplicates so that you did not have multiple copies of the same file name. Now the problem is it would end up being a very long list just through the normal rate of opening and closing files so you would have to create a cut off list length. The next thing would be that the list would have to be updated live over every open instance of the editor.
a very long list just through the normal rate of opening and closing files