From 8483adba3ccdbaccd95627721c7c2a029a316924 Mon Sep 17 00:00:00 2001 From: Daniel Huhn Date: Thu, 17 Oct 2013 10:27:04 +0200 Subject: [PATCH] added installation instructions to the readme --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index f5a8522d..90fa00f8 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,18 @@ Many planned features are not yet implemented, but in it's current state, the mo The "out of box" experience is meant to be very familiar to PowerShell.exe users - there should be no need to learn any new key strokes. +Installation +============ + +1. Extract the `PSReadline.zip` into your `C:\Users\[User]\Documents\WindowsPowerShell\modules\PSReadline` folder. (You may have to create these directories if they don't exist) + +2. Edit your `C:\Users\[User]\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1` file (or create if not exists) and include the commands you want to load: + +``` +Import-Module PSReadLine +Set-PSReadlineOption -EditMode Emacs +``` + Usage =====