如何从oh-my-posh / posh-git显示中删除红色基本字形?

时间:2020-05-30 00:03:40

标签: git powershell fonts posh-git windows-terminal

我正在将Windows终端v1.0.1402.0与带有oh-my-posh和posh-git的powershell v7.0.1一起使用。打开终端时,我目前得到以下红色基本字形。

Red Glyph Error

我已经安装并尝试使用MesloLGL NF和Cascadia Mono PL作为可同时用于oh-my-posh的字体。

这是我的powershell个人资料:

Import-Module posh-git
Import-Module oh-my-posh
Set-Theme Paradox

这是我的Windows终端设置

 "defaults":
        {
            "colorScheme":  "One Half Dark",
            //"fontFace": "MesloLGL NF"
            "fontFace": "Cascadia Mono PL"
            // Put settings here that you want to apply to all profiles.
        },
        "list":
        [   
            {
                // Make changes here to the powershell.exe profile
                "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
                "name": "Windows PowerShell",
                "commandline": "pwsh.exe",
                "useAcrylic": true,
                "acrylicOpacity": 0.8,
                "hidden": false
            },

无论我在哪个目录中,我都会收到此错误。

如果有帮助,这也是我的主题设置:(侧面说明:当我在仍为0之前打印此错误时,错误计数仅为1,)

PromptSymbols        : {SegmentBackwardSymbol, RootSymbol, PromptIndicator, VirtualEnvSymbol...}
CurrentHostname      : MyHost
MyThemesLocation     : C:\MyPath\PowerShell\PoshThemes
CurrentThemeLocation : C:\MyPath\PowerShell\Modules\oh-my-posh\2.0.412\Themes\Paradox.psm1
GitSymbols           : {BeforeIndexSymbol, LocalStagedStatusSymbol, DelimSymbol, BranchUntrackedSymbol...¦}
Options              : {ConsoleTitle, OriginSymbols}
ErrorCount           : 1
CurrentUser          : user
Colors               : {GitForegroundColor, GitDefaultColor, PromptForegroundColor, VirtualEnvBackgroundColor...¦}

3 个答案:

答案 0 :(得分:2)

对于那些遇到这种行为并且不想像接受的答案所说的那样完全删除与 conda 的 oh-my-posh 集成的人,有一种方法可以修复未知字形。

使用的额外字形可以通过使用来自 Nerd Fonts 的 Cascadia 代码的补丁版本获得。寻找一个叫做Caskaydia Cove 的地方。下载后,打开每个字体文件并安装它。然后可以在Windows终端选项中设置字体(按Ctrl+,)并替换默认字体如下:

"fontFace" : "CaskaydiaCove Nerd Font",

This 是提示现在的样子。

答案 1 :(得分:0)

我能够通过参考这个https://superuser.com/q/1424905/1183235问题来解决此问题。我列出了我所有的powershell配置文件,看到一个初始化conda并将其删除的配置文件。现在可以了!

要列出所有Powershell配置文件:

$PROFILE | Format-List -Force

答案 2 :(得分:0)

添加

$ sl.PromptSymbols.VirtualEnvSymbol =''

位于Paradox主题文件(或当前主题的文件)的底部