diff --git a/src/segments/path.go b/src/segments/path.go index 1bf48e5b..d3d45390 100644 --- a/src/segments/path.go +++ b/src/segments/path.go @@ -357,8 +357,8 @@ func (pt *Path) replaceMappedLocations(pwd string) string { mappedLocations := map[string]string{} if pt.props.GetBool(MappedLocationsEnabled, true) { - mappedLocations["HKCU:"] = pt.props.GetString(WindowsRegistryIcon, "\uF013") - mappedLocations["HKLM:"] = pt.props.GetString(WindowsRegistryIcon, "\uF013") + mappedLocations["hkcu:"] = pt.props.GetString(WindowsRegistryIcon, "\uF013") + mappedLocations["hklm:"] = pt.props.GetString(WindowsRegistryIcon, "\uF013") mappedLocations[pt.normalize(pt.env.Home())] = pt.props.GetString(HomeIcon, "~") }