From ca089777db31d7b3c66b1c35eadfb4d8abd94683 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Sun, 27 Aug 2017 03:58:00 -0400 Subject: [PATCH] Adds ${filePath} support to status file formatting --- src/git/formatters/status.ts | 6 ++++++ src/git/models/status.ts | 6 +++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/src/git/formatters/status.ts b/src/git/formatters/status.ts index 590d60d..4cd0393 100644 --- a/src/git/formatters/status.ts +++ b/src/git/formatters/status.ts @@ -7,6 +7,7 @@ import * as path from 'path'; export interface IStatusFormatOptions extends IFormatOptions { tokenOptions?: { file?: Strings.ITokenOptions; + filePath?: Strings.ITokenOptions; path?: Strings.ITokenOptions; }; } @@ -18,6 +19,11 @@ export class StatusFileFormatter extends Formatter