Skip to content

Instantly share code, notes, and snippets.

@martinmev
Last active May 25, 2019 21:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martinmev/898fee9239e2f73e25e7b9304c303f15 to your computer and use it in GitHub Desktop.
Save martinmev/898fee9239e2f73e25e7b9304c303f15 to your computer and use it in GitHub Desktop.
PowerShell Core / Windows PowerShell - Workaround for non-US keyboard layout and Unicode code page
# Workaround for https://github.com/PowerShell/PSReadLine/pull/768
# Downgrade PS-Readline
# Install-Module -Name PSReadLine -RequiredVersion 1.2 -SkipPublisherCheck
# Install less pager
# https://www.guysalias.tk/misc/less/
# Unicode code page
chcp 65001
$env:PAGER='less.exe'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment