You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,11 @@ There are multiple ways to install PSReadLine.
42
42
43
43
You will need PowerShellGet. It is included in Windows 10 and [WMF5](http://go.microsoft.com/fwlink/?LinkId=398175). If you are using PowerShell V3 or V4, you will need to install [PowerShellGet](https://docs.microsoft.com/powershell/gallery/installing-psget).
44
44
45
-
After installing PowerShellGet, you can simply run `Install-Module PSReadLine`.
45
+
After installing PowerShellGet, you can simply run `Install-Module PSReadLine -AllowPrerelease -Force` to get the latest prerelease version.
46
+
47
+
If you only want to get the latest stable version, run `Install-Module PSReadLine`.
48
+
49
+
>[!NOTE] Prerelease versions will have newer features and bug fixes, but may also introduce new issues.
46
50
47
51
If you are on Windows 10, PSReadLine is already installed. Windows 10 RTM and the November update have version 1.1, later builds have version 1.2 (which includes vi mode). See below for how to upgrade.
48
52
@@ -67,7 +71,7 @@ if ($host.Name -eq 'ConsoleHost')
67
71
Alternatively, the file `C:\Users\[User]\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1` is for powershell.exe only. Using this file, you can simply add:
68
72
69
73
```powershell
70
-
Import-Module PSReadLine
74
+
Import-Module PSReadLine
71
75
```
72
76
73
77
In either case, you can create the appropriate file if you don't already have one.
0 commit comments