Brackets new feature "Recent files" - how to disable it

Since I love brackets for it's simplicity and because it is fast, I find this new feature annoying.
It keeps adding recently opened files even if they have been closed. So here is fast solution how to disable it and return previous Ctrl-Tab functionality.

Open user key map file (Debug -> Open User Key Map) and add this under overrides: "Ctrl-Tab": "navigate.nextDoc".

{
    "documentation": "https://github.com/adobe/brackets/wiki/User-Key-Bindings",
    "overrides": {
        "Ctrl-Tab": "navigate.nextDoc",
        "Ctrl-Shift-Tab": "navigate.prevDoc"
    }
}
<< back