Skip to main content

Haskell

Whatโ€‹

Display the currently active Glasgow Haskell Compiler (GHC) version.

Sample Configurationโ€‹

{
"type": "haskell",
"style": "powerline",
"powerline_symbol": "๎‚ฐ",
"foreground": "#906cff",
"background": "#100e23",
"template": " ๎˜Ÿ {{ .Full }}"
}

Propertiesโ€‹

NameTypeDefaultDescription
home_enabledbooleanfalsedisplay the segment in the HOME folder or not
fetch_versionbooleantruefetch the GHC version
missing_command_textstringtext to display when the command is missing
display_modestringcontext
  • always: the segment is always displayed
  • files: the segment is only displayed when file extensions listed are present
  • context: displays the segment when the environment or files is active
version_url_templatestringa go text/template template that creates the URL of the version info / release notes
stack_ghc_modestringneverdetermines when to use stack ghc to retrieve the version information. Using stack ghc will decrease performance.
  • never: never use stack ghc
  • package: only use stack ghc when stack.yaml is in the root of the
  • always: always use stack ghc
extensions[]string*.hs, *.lhs, stack.yaml, package.yaml, *.cabal, cabal.projectallows to override the default list of file extensions to validate
folders[]stringallows to override the list of folder names to validate
cache_versionbooleanfalsecache the executable's version or not

Template (info)โ€‹

default template
{{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}

Propertiesโ€‹

NameTypeDescription
.Fullstringthe full version
.Majorstringmajor number
.Minorstringminor number
.Patchstringpatch number
.URLstringURL of the version info / release notes
.Errorstringerror encountered when fetching the version string
.StackGhcbooleantrue if stack ghc was used, otherwise false