Skip to content

Commit f686d7a

Browse files
committed
Remove images that are no longer used
1 parent f6db683 commit f686d7a

File tree

9 files changed

+22
-84
lines changed

9 files changed

+22
-84
lines changed

reference/docs-conceptual/how-to-use-docs.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The version selector doesn't affect conceptual documentation. The conceptual doc
4646
the **Reference** node in the TOC. The same conceptual articles appear for every version selected.
4747
If there are version-specific differences, the documentation makes note of those differences.
4848

49-
![Animation showing how to use the version selector.][04]
49+
![Animation showing how to use the version selector.][06]
5050

5151
You can verify the version of PowerShell you are using by inspecting the `$PSVersionTable.PSVersion`
5252
value. The following example shows the output for Windows PowerShell 5.1.
@@ -96,7 +96,7 @@ To download the documentation as a PDF, click the **Download PDF** button at the
9696
Documentation for older versions of PowerShell is archived in our [Previous Versions][01] site. You
9797
can choose **Previous Versions** from the version selector.
9898

99-
![Screenshot of the Previous Versions option.](media/how-to-use-docs/previous-versions.gif)
99+
![Screenshot of the Previous Versions option.][04]
100100

101101
The previous versions site contains documentation for the following topics:
102102

@@ -115,5 +115,6 @@ The previous versions site contains documentation for the following topics:
115115
[01]: https://aka.ms/PSLegacyDocs
116116
[02]: media/how-to-use-docs/how-to-use.gif
117117
[03]: media/how-to-use-docs/pdf-button.gif
118-
[04]: media/how-to-use-docs/version-search.gif
118+
[04]: media/how-to-use-docs/previous-versions.gif
119119
[05]: media/how-to-use-docs/search-scope.gif
120+
[06]: media/how-to-use-docs/version-search.gif

reference/docs-conceptual/learn/shell/using-predictors.md

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ the user's cursor. The suggestions from Predictive IntelliSense help new and exp
1818
PowerShell discover, edit, and execute full commands based on matching predictions. Suggestions can
1919
come from the user's history and additional domain specific plugins.
2020

21-
![Inline view of a prediction](media/using-predictors/predictor-inline-1.png)
21+
![Inline view of a prediction][07]
2222

2323
The previous images shows the default `InlineView` of the suggestion. Pressing <kbd>RightArrow</kbd>
2424
key accepts an inline suggestion. After accepting the suggestion, you can edit the command line
2525
before hitting <kbd>Enter</kbd> to run the command.
2626

2727
**PSReadLine** also offers a `ListView` presentation of the suggestions.
2828

29-
![List view of predictions](media/using-predictors/predictor-listview-1.png)
29+
![List view of predictions][08]
3030

3131
When in the list view, you can use the arrow keys to scroll through the available suggestions. List
3232
view also shows the source of the prediction.
@@ -46,7 +46,7 @@ To install **PSReadLine** using **PowerShellGet**:
4646
Install-Module -Name PSReadLine
4747
```
4848

49-
Or install using the new [PowerShellGet v3][PSGetv3] module:
49+
Or install using the new [PowerShellGet v3][05] module:
5050

5151
```powershell
5252
Install-PSResource -Name PSReadLine
@@ -82,7 +82,7 @@ You can change the prediction source using the `Set-PSReadLineOption` cmdlet wit
8282
> [!NOTE]
8383
> History-based predictions come from the history maintained by **PSReadLine**. That history is more
8484
> comprehensive than the session-based history you can see using `Get-History`. For more
85-
> information, see **Command history** section of [about_PSReadLine][psr-history].
85+
> information, see **Command history** section of [about_PSReadLine][01].
8686
8787
### Setting the prediction color
8888

@@ -102,7 +102,7 @@ Set-PSReadLineOption -Colors @{ InlinePrediction = "`e[38;5;238m" }
102102
```
103103

104104
For more information about setting prediction color and other PSReadLine settings, see
105-
[Set-PSReadLineOption][Set-PSReadLineOption].
105+
[Set-PSReadLineOption][09].
106106

107107
### Changing keybindings
108108

@@ -136,14 +136,14 @@ Set-PSReadLineKeyHandler -Chord "RightArrow" -Function ForwardWord
136136
The **Az.Tools.Predictor** module was the first plug-in for Predictive IntelliSense. It uses Machine
137137
Learning to predict what Azure PowerShell command you want to run and the parameters you want to
138138
use. For more information and installation instructions, see
139-
[Announcing General Availability of Az.Tools.Predictor][azpredictor].
139+
[Announcing General Availability of Az.Tools.Predictor][03].
140140

141141
The **CompletionPredictor** module adds an IntelliSense experience for anything that can be
142142
tab-completed in PowerShell. With **PSReadLine** set to `InlineView`, you get the normal tab
143143
completion experience. When you switch to `ListView`, you get the IntelliSense experience. You can
144-
install the [CompletionPredictor][CompletionPredictor] module from the PowerShell Gallery.
144+
install the [CompletionPredictor][04] module from the PowerShell Gallery.
145145

146-
![PowerShell IntelliSense using the CompletionPredictor](media/using-predictors/completion-predictor.gif)
146+
![PowerShell IntelliSense using the CompletionPredictor][06]
147147

148148
As previously noted, `ListView` shows you the source of the prediction. If you have multiple
149149
plug-ins installed the predictions are grouped by source with **History** listed first followed by
@@ -155,12 +155,15 @@ You can write your own predictor using C# to create a compiled PowerShell module
155155
implement the **System.Management.Automation.Subsystem.Prediction.ICommandPredictor** interface.
156156
This interface declares the methods used to query for prediction results and provide feedback.
157157

158-
For more information, see [How to create a command-line predictor][custom-predictor].
158+
For more information, see [How to create a command-line predictor][02].
159159

160160
<!-- link references -->
161-
[azpredictor]: https://techcommunity.microsoft.com/t5/azure-tools-blog/announcing-general-availability-of-az-tools-predictor/ba-p/3297956
162-
[Set-PSReadLineOption]: xref:PSReadLine.Set-PSReadLineOption
163-
[PSGetv3]: https://www.powershellgallery.com/packages/PowerShellGet/3.0.14-beta14
164-
[CompletionPredictor]: https://www.powershellgallery.com/packages/CompletionPredictor
165-
[psr-history]: /powershell/module/psreadline/about/about_psreadline#command-history
166-
[custom-predictor]: /powershell/scripting/dev-cross-plat/create-cmdline-predictor
161+
[01]: /powershell/module/psreadline/about/about_psreadline#command-history
162+
[02]: /powershell/scripting/dev-cross-plat/create-cmdline-predictor
163+
[03]: https://techcommunity.microsoft.com/t5/azure-tools-blog/announcing-general-availability-of-az-tools-predictor/ba-p/3297956
164+
[04]: https://www.powershellgallery.com/packages/CompletionPredictor
165+
[05]: https://www.powershellgallery.com/packages/PowerShellGet/3.0.14-beta14
166+
[06]: media/using-predictors/completion-predictor.gif
167+
[07]: media/using-predictors/predictor-inline-1.png
168+
[08]: media/using-predictors/predictor-listview-1.png
169+
[09]: xref:PSReadLine.Set-PSReadLineOption
-15.2 KB
Binary file not shown.
-94 KB
Binary file not shown.
-3.44 MB
Binary file not shown.
-30.3 KB
Binary file not shown.
-1.3 MB
Binary file not shown.

reference/media/index/av_colors_128.svg

Lines changed: 0 additions & 35 deletions
This file was deleted.

reference/media/index/powershell_128.svg

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)