Another problem that you may run into is setting up the task (Settings → Launch → Tasks) without quoting correctly. Performing a task like the following will disrupt the composer's ANSI layout (everything else seems to work very well):
%TOOLS_DIR%\git\bin\sh.exe --login -i -new_console:C:%TOOLS_DIR%\git\mingw64\share\git\git-for-windows.ico:t:"Git bash"
The %TOOLS_DIR%
value is D:\Tools
. I can only imagine that backslash problem. however, it works as expected:
"%TOOLS_DIR%\git\bin\sh.exe" --login -i -new_console:C:"%TOOLS_DIR%\git\mingw64\share\git\git-for-windows.ico":t:"Git bash"
source share