fullMarker method
The full marker command: reports cwd plus git branch/status and privilege.
Implementation
@override
String fullMarker(CwdMarker marker) {
final (a, b) = marker.tokenHalves;
// `<nul set /p "=text"` prints text without a trailing newline; chain the
// halves and the cwd, then a final `echo.` for the line terminator.
return '<nul set /p "=$a"& <nul set /p "=$b%CD%"& echo.';
}