MRU for tabs - development proposal

Hello, this is a development proposal.
Even though there is a Development section in Russian, I decided not to clutter it with English text and so I'm posting here.
gd's tabs use default QTabWidget's Ctrl+Tab behaviour, which is switching to the next tab in line.
It would nice to have a most-recently-used tab switching order (MRU), pretty much what Opera browser does when you press Ctrl and start pressing Tab and then release Ctrl.
If a translator like my wife has many tabs open and compares them, MRU greatly increases productivity/ decreases annoyance.
Implementing it would be pretty easy and I would like to do it myself. I'm asking whether such a feature would be welcome.
The workflow would be:
Implement a custom KeyPressEvent for QTabWidget to react to Ctrl+Tab
Have a QList<int> which keeps the MRU order of tabs
Update QList on CloseTab, NewTab, whenever user clicks a tab etc.
Modify tablist widget to show tabs in MRU order
Optionally tablist widget could popup on Ctrl+Tab just like in Opera.
Please let me know what you think.
Even though there is a Development section in Russian, I decided not to clutter it with English text and so I'm posting here.
gd's tabs use default QTabWidget's Ctrl+Tab behaviour, which is switching to the next tab in line.
It would nice to have a most-recently-used tab switching order (MRU), pretty much what Opera browser does when you press Ctrl and start pressing Tab and then release Ctrl.
If a translator like my wife has many tabs open and compares them, MRU greatly increases productivity/ decreases annoyance.
Implementing it would be pretty easy and I would like to do it myself. I'm asking whether such a feature would be welcome.
The workflow would be:
Implement a custom KeyPressEvent for QTabWidget to react to Ctrl+Tab
Have a QList<int> which keeps the MRU order of tabs
Update QList on CloseTab, NewTab, whenever user clicks a tab etc.
Modify tablist widget to show tabs in MRU order
Optionally tablist widget could popup on Ctrl+Tab just like in Opera.
Please let me know what you think.