Dev Build 2104 is out now. Some of the highlights are:
- Indentation guides. There are enabled by default, but can be disabled with the draw_indent_guides setting. The color and width can be customised by editing the .tmTheme, and using the guideColor and guideWidth keys.
 - Projects open in new windows by default (except when opening via the Switch Project menu item)
 - Projects may contain build systems. An example is:
 
{
    "folders":
    
        {
            "path": "src"
        }
    ],
    "settings":
    {
        "tab_size": 8
    },
    "build_systems":
    
        {
            "name": "List",
            "cmd": "ls"]
        }
    ]
}
Lastly, I’ve tweaked the rules for Shift+Tab behavior, so that now it’ll unindent a line whenever tab will indent the same line. Specifically, if the caret is before the first non-whitespace character on the line, then shift+tab will now unindent.
