diff --git a/docs/docs/configuration.md b/docs/docs/configuration.md index 6dee7f26..9e6988ce 100644 --- a/docs/docs/configuration.md +++ b/docs/docs/configuration.md @@ -222,7 +222,7 @@ The following sample is based on the [AWS Segment][aws]. { "type": "aws", "style": "powerline", - "powerline_symbol": "", + "powerline_symbol": "\uE0B0", "foreground": "#ffffff", "background": "#111111", "foreground_templates": [ diff --git a/docs/docs/segment-angular.md b/docs/docs/segment-angular.md index 6e2a1f86..b7ff7d85 100644 --- a/docs/docs/segment-angular.md +++ b/docs/docs/segment-angular.md @@ -14,7 +14,7 @@ Display the currently active Angular CLI version. { "type": "angular", "style": "powerline", - "powerline_symbol": "", + "powerline_symbol": "\uE0B0", "foreground": "#000000", "background": "#1976d2", "properties": { diff --git a/docs/docs/segment-azfunc.md b/docs/docs/segment-azfunc.md index 57338174..6b4368ae 100644 --- a/docs/docs/segment-azfunc.md +++ b/docs/docs/segment-azfunc.md @@ -14,7 +14,7 @@ Display the currently active Azure functions CLI version. { "type": "azfunc", "style": "powerline", - "powerline_symbol": "", + "powerline_symbol": "\uE0B0", "foreground": "#ffffff", "background": "#FEAC19", "properties": { diff --git a/docs/docs/segment-dotnet.md b/docs/docs/segment-dotnet.md index bc82bb74..899d4eb1 100644 --- a/docs/docs/segment-dotnet.md +++ b/docs/docs/segment-dotnet.md @@ -14,7 +14,7 @@ Display the currently active .NET SDK version. { "type": "dotnet", "style": "powerline", - "powerline_symbol": "", + "powerline_symbol": "\uE0B0", "foreground": "#000000", "background": "#00ffff", "properties": { diff --git a/docs/docs/segment-nbgv.mdx b/docs/docs/segment-nbgv.mdx index 475bb40d..a840ef1a 100644 --- a/docs/docs/segment-nbgv.mdx +++ b/docs/docs/segment-nbgv.mdx @@ -18,7 +18,7 @@ The Nerdbank.GitVersioning CLI can be a bit slow causing the prompt to feel slow { "type": "nbgv", "style": "powerline", - "powerline_symbol": "", + "powerline_symbol": "\uE0B0", "foreground": "#ffffff", "background": "#3a579a", "properties": { diff --git a/src/image_test.go b/src/image_test.go index 4292b693..73ccaf50 100644 --- a/src/image_test.go +++ b/src/image_test.go @@ -32,8 +32,8 @@ func TestStringImageFileWithText(t *testing.T) { } func TestStringImageFileWithANSI(t *testing.T) { - prompt := ` oh-my-posh -  main ≡  ~4 -8 ?7  + prompt := `\uE0B0 oh-my-posh + \uE0B0 main ≡  ~4 -8 ?7 \uE0B0  ` err := runImageTest(prompt) assert.NoError(t, err)