├── .config └── tsaoptions.json ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── Bug_Report.md │ ├── Bug_Report.yaml │ ├── Documentation_Issue.yaml │ ├── Feature_Request.yaml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── policies │ └── resourceManagement.yml └── workflows │ └── IssuePreTriage.yml ├── .gitignore ├── .pipelines └── PSReadLine-Official.yml ├── .vscode ├── launch.json └── tasks.json ├── License.txt ├── MockPSConsole ├── MockPSConsole.csproj ├── Program.cs └── Program.manifest ├── PSReadLine.build.ps1 ├── PSReadLine ├── Accessibility.cs ├── AssemblyInfo.cs ├── BasicEditing.cs ├── Changes.txt ├── CharMap.cs ├── Clipboard.cs ├── Cmdlets.cs ├── Completion.cs ├── Completion.vi.cs ├── ConsoleKeyChordConverter.cs ├── ConsoleLib.cs ├── DisplayBlockBase.cs ├── Disposable.cs ├── DynamicHelp.cs ├── History.cs ├── HistoryQueue.cs ├── KeyBindings.cs ├── KeyBindings.vi.cs ├── Keys.cs ├── KillYank.cs ├── Movement.cs ├── Movement.vi.cs ├── Movement.vi.multiline.cs ├── OnImportAndRemove.cs ├── Options.cs ├── PSReadLine.csproj ├── PSReadLine.format.ps1xml ├── PSReadLine.psd1 ├── PSReadLine.psm1 ├── PSReadLine.sln ├── PSReadLineResources.Designer.cs ├── PSReadLineResources.resx ├── PlatformWindows.cs ├── Position.cs ├── Prediction.Entry.cs ├── Prediction.Views.cs ├── Prediction.cs ├── Properties │ └── launchSettings.json ├── PublicAPI.cs ├── ReadLine.cs ├── ReadLine.vi.cs ├── Render.Helper.cs ├── Render.cs ├── Replace.vi.cs ├── SamplePSReadLineProfile.ps1 ├── ScreenCapture.cs ├── StringBuilderCharacterExtensions.cs ├── StringBuilderLinewiseExtensions.cs ├── StringBuilderTextObjectExtensions.cs ├── TextObjects.Vi.cs ├── UndoRedo.cs ├── UndoRedo.vi.cs ├── ViRegister.cs ├── VisualEditing.vi.cs ├── Words.cs ├── Words.vi.cs └── YankPaste.vi.cs ├── Polyfill ├── CommandPrediction.cs └── Polyfill.csproj ├── README.md ├── appveyor.yml ├── nuget.config ├── test ├── BasicEditingTest.VI.cs ├── BasicEditingTest.cs ├── CompletionTest.cs ├── ConsoleFixture.cs ├── DeadKeyTest.cs ├── DigitArgumentTest.cs ├── DynamicHelpTest.cs ├── Get-KeyInfoData.ps1 ├── HistoryTest.VI.cs ├── HistoryTest.cs ├── InlinePredictionTest.cs ├── KeyBindingsTest.cs ├── KeyInfo-en-US-linux.json ├── KeyInfo-en-US-windows.json ├── KeyInfo-fr-FR-windows.json ├── KeyInfo-pl-PL-linux.json ├── KeyInfo-pl-PL-windows.json ├── KeyInfo-ru-RU-windows.json ├── KeyInfoTest.cs ├── KeyboardLayouts.cs ├── KillYankTest.cs ├── ListPredictionTest.cs ├── ListScrollableViewTest.cs ├── ListViewTooltipTest.cs ├── MockConsole.cs ├── MovementTest.VI.Multiline.cs ├── MovementTest.VI.cs ├── MovementTest.cs ├── OptionsTest.VI.cs ├── OptionsTest.cs ├── PSReadLine.Tests.csproj ├── PublicAPIsTest.cs ├── RenderTest.cs ├── ResizingTest.cs ├── ScreenCaptureTest.cs ├── StringBuilderCharacterExtensionsTests.cs ├── StringBuilderLinewiseExtensionsTests.cs ├── StringBuilderTextObjectExtensionsTests.cs ├── TextObjects.Vi.Tests.cs ├── UndoRedoTest.cs ├── UnitTestReadLine.cs ├── ViRegisterTests.cs ├── WindowsAnsiInputTest.cs ├── WordsTest.cs ├── WordsTests.VI.cs ├── YankPasteTest.VI.cs ├── assets │ └── resizing │ │ ├── physical-line-count.json │ │ └── renderdata-to-cursor-point.json └── keydata.txt └── tools ├── CheckHelp.ps1 ├── helper.psm1 ├── issue-mgmt └── CloseDupIssues.ps1 └── releaseTools.psm1 /.config/tsaoptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/.config/tsaoptions.json -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/.github/ISSUE_TEMPLATE/Bug_Report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_Report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/.github/ISSUE_TEMPLATE/Bug_Report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Documentation_Issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/.github/ISSUE_TEMPLATE/Documentation_Issue.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_Request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/.github/ISSUE_TEMPLATE/Feature_Request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.github/workflows/IssuePreTriage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/.github/workflows/IssuePreTriage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/.gitignore -------------------------------------------------------------------------------- /.pipelines/PSReadLine-Official.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/.pipelines/PSReadLine-Official.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/License.txt -------------------------------------------------------------------------------- /MockPSConsole/MockPSConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/MockPSConsole/MockPSConsole.csproj -------------------------------------------------------------------------------- /MockPSConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/MockPSConsole/Program.cs -------------------------------------------------------------------------------- /MockPSConsole/Program.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/MockPSConsole/Program.manifest -------------------------------------------------------------------------------- /PSReadLine.build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine.build.ps1 -------------------------------------------------------------------------------- /PSReadLine/Accessibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Accessibility.cs -------------------------------------------------------------------------------- /PSReadLine/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/AssemblyInfo.cs -------------------------------------------------------------------------------- /PSReadLine/BasicEditing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/BasicEditing.cs -------------------------------------------------------------------------------- /PSReadLine/Changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Changes.txt -------------------------------------------------------------------------------- /PSReadLine/CharMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/CharMap.cs -------------------------------------------------------------------------------- /PSReadLine/Clipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Clipboard.cs -------------------------------------------------------------------------------- /PSReadLine/Cmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Cmdlets.cs -------------------------------------------------------------------------------- /PSReadLine/Completion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Completion.cs -------------------------------------------------------------------------------- /PSReadLine/Completion.vi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Completion.vi.cs -------------------------------------------------------------------------------- /PSReadLine/ConsoleKeyChordConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/ConsoleKeyChordConverter.cs -------------------------------------------------------------------------------- /PSReadLine/ConsoleLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/ConsoleLib.cs -------------------------------------------------------------------------------- /PSReadLine/DisplayBlockBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/DisplayBlockBase.cs -------------------------------------------------------------------------------- /PSReadLine/Disposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Disposable.cs -------------------------------------------------------------------------------- /PSReadLine/DynamicHelp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/DynamicHelp.cs -------------------------------------------------------------------------------- /PSReadLine/History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/History.cs -------------------------------------------------------------------------------- /PSReadLine/HistoryQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/HistoryQueue.cs -------------------------------------------------------------------------------- /PSReadLine/KeyBindings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/KeyBindings.cs -------------------------------------------------------------------------------- /PSReadLine/KeyBindings.vi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/KeyBindings.vi.cs -------------------------------------------------------------------------------- /PSReadLine/Keys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Keys.cs -------------------------------------------------------------------------------- /PSReadLine/KillYank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/KillYank.cs -------------------------------------------------------------------------------- /PSReadLine/Movement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Movement.cs -------------------------------------------------------------------------------- /PSReadLine/Movement.vi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Movement.vi.cs -------------------------------------------------------------------------------- /PSReadLine/Movement.vi.multiline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Movement.vi.multiline.cs -------------------------------------------------------------------------------- /PSReadLine/OnImportAndRemove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/OnImportAndRemove.cs -------------------------------------------------------------------------------- /PSReadLine/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Options.cs -------------------------------------------------------------------------------- /PSReadLine/PSReadLine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/PSReadLine.csproj -------------------------------------------------------------------------------- /PSReadLine/PSReadLine.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/PSReadLine.format.ps1xml -------------------------------------------------------------------------------- /PSReadLine/PSReadLine.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/PSReadLine.psd1 -------------------------------------------------------------------------------- /PSReadLine/PSReadLine.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/PSReadLine.psm1 -------------------------------------------------------------------------------- /PSReadLine/PSReadLine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/PSReadLine.sln -------------------------------------------------------------------------------- /PSReadLine/PSReadLineResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/PSReadLineResources.Designer.cs -------------------------------------------------------------------------------- /PSReadLine/PSReadLineResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/PSReadLineResources.resx -------------------------------------------------------------------------------- /PSReadLine/PlatformWindows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/PlatformWindows.cs -------------------------------------------------------------------------------- /PSReadLine/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Position.cs -------------------------------------------------------------------------------- /PSReadLine/Prediction.Entry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Prediction.Entry.cs -------------------------------------------------------------------------------- /PSReadLine/Prediction.Views.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Prediction.Views.cs -------------------------------------------------------------------------------- /PSReadLine/Prediction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Prediction.cs -------------------------------------------------------------------------------- /PSReadLine/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Properties/launchSettings.json -------------------------------------------------------------------------------- /PSReadLine/PublicAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/PublicAPI.cs -------------------------------------------------------------------------------- /PSReadLine/ReadLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/ReadLine.cs -------------------------------------------------------------------------------- /PSReadLine/ReadLine.vi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/ReadLine.vi.cs -------------------------------------------------------------------------------- /PSReadLine/Render.Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Render.Helper.cs -------------------------------------------------------------------------------- /PSReadLine/Render.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Render.cs -------------------------------------------------------------------------------- /PSReadLine/Replace.vi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Replace.vi.cs -------------------------------------------------------------------------------- /PSReadLine/SamplePSReadLineProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/SamplePSReadLineProfile.ps1 -------------------------------------------------------------------------------- /PSReadLine/ScreenCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/ScreenCapture.cs -------------------------------------------------------------------------------- /PSReadLine/StringBuilderCharacterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/StringBuilderCharacterExtensions.cs -------------------------------------------------------------------------------- /PSReadLine/StringBuilderLinewiseExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/StringBuilderLinewiseExtensions.cs -------------------------------------------------------------------------------- /PSReadLine/StringBuilderTextObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/StringBuilderTextObjectExtensions.cs -------------------------------------------------------------------------------- /PSReadLine/TextObjects.Vi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/TextObjects.Vi.cs -------------------------------------------------------------------------------- /PSReadLine/UndoRedo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/UndoRedo.cs -------------------------------------------------------------------------------- /PSReadLine/UndoRedo.vi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/UndoRedo.vi.cs -------------------------------------------------------------------------------- /PSReadLine/ViRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/ViRegister.cs -------------------------------------------------------------------------------- /PSReadLine/VisualEditing.vi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/VisualEditing.vi.cs -------------------------------------------------------------------------------- /PSReadLine/Words.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Words.cs -------------------------------------------------------------------------------- /PSReadLine/Words.vi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/Words.vi.cs -------------------------------------------------------------------------------- /PSReadLine/YankPaste.vi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/PSReadLine/YankPaste.vi.cs -------------------------------------------------------------------------------- /Polyfill/CommandPrediction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/Polyfill/CommandPrediction.cs -------------------------------------------------------------------------------- /Polyfill/Polyfill.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/Polyfill/Polyfill.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/appveyor.yml -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/nuget.config -------------------------------------------------------------------------------- /test/BasicEditingTest.VI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/BasicEditingTest.VI.cs -------------------------------------------------------------------------------- /test/BasicEditingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/BasicEditingTest.cs -------------------------------------------------------------------------------- /test/CompletionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/CompletionTest.cs -------------------------------------------------------------------------------- /test/ConsoleFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/ConsoleFixture.cs -------------------------------------------------------------------------------- /test/DeadKeyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/DeadKeyTest.cs -------------------------------------------------------------------------------- /test/DigitArgumentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/DigitArgumentTest.cs -------------------------------------------------------------------------------- /test/DynamicHelpTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/DynamicHelpTest.cs -------------------------------------------------------------------------------- /test/Get-KeyInfoData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/Get-KeyInfoData.ps1 -------------------------------------------------------------------------------- /test/HistoryTest.VI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/HistoryTest.VI.cs -------------------------------------------------------------------------------- /test/HistoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/HistoryTest.cs -------------------------------------------------------------------------------- /test/InlinePredictionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/InlinePredictionTest.cs -------------------------------------------------------------------------------- /test/KeyBindingsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/KeyBindingsTest.cs -------------------------------------------------------------------------------- /test/KeyInfo-en-US-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/KeyInfo-en-US-linux.json -------------------------------------------------------------------------------- /test/KeyInfo-en-US-windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/KeyInfo-en-US-windows.json -------------------------------------------------------------------------------- /test/KeyInfo-fr-FR-windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/KeyInfo-fr-FR-windows.json -------------------------------------------------------------------------------- /test/KeyInfo-pl-PL-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/KeyInfo-pl-PL-linux.json -------------------------------------------------------------------------------- /test/KeyInfo-pl-PL-windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/KeyInfo-pl-PL-windows.json -------------------------------------------------------------------------------- /test/KeyInfo-ru-RU-windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/KeyInfo-ru-RU-windows.json -------------------------------------------------------------------------------- /test/KeyInfoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/KeyInfoTest.cs -------------------------------------------------------------------------------- /test/KeyboardLayouts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/KeyboardLayouts.cs -------------------------------------------------------------------------------- /test/KillYankTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/KillYankTest.cs -------------------------------------------------------------------------------- /test/ListPredictionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/ListPredictionTest.cs -------------------------------------------------------------------------------- /test/ListScrollableViewTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/ListScrollableViewTest.cs -------------------------------------------------------------------------------- /test/ListViewTooltipTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/ListViewTooltipTest.cs -------------------------------------------------------------------------------- /test/MockConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/MockConsole.cs -------------------------------------------------------------------------------- /test/MovementTest.VI.Multiline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/MovementTest.VI.Multiline.cs -------------------------------------------------------------------------------- /test/MovementTest.VI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/MovementTest.VI.cs -------------------------------------------------------------------------------- /test/MovementTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/MovementTest.cs -------------------------------------------------------------------------------- /test/OptionsTest.VI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/OptionsTest.VI.cs -------------------------------------------------------------------------------- /test/OptionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/OptionsTest.cs -------------------------------------------------------------------------------- /test/PSReadLine.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/PSReadLine.Tests.csproj -------------------------------------------------------------------------------- /test/PublicAPIsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/PublicAPIsTest.cs -------------------------------------------------------------------------------- /test/RenderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/RenderTest.cs -------------------------------------------------------------------------------- /test/ResizingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/ResizingTest.cs -------------------------------------------------------------------------------- /test/ScreenCaptureTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/ScreenCaptureTest.cs -------------------------------------------------------------------------------- /test/StringBuilderCharacterExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/StringBuilderCharacterExtensionsTests.cs -------------------------------------------------------------------------------- /test/StringBuilderLinewiseExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/StringBuilderLinewiseExtensionsTests.cs -------------------------------------------------------------------------------- /test/StringBuilderTextObjectExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/StringBuilderTextObjectExtensionsTests.cs -------------------------------------------------------------------------------- /test/TextObjects.Vi.Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/TextObjects.Vi.Tests.cs -------------------------------------------------------------------------------- /test/UndoRedoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/UndoRedoTest.cs -------------------------------------------------------------------------------- /test/UnitTestReadLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/UnitTestReadLine.cs -------------------------------------------------------------------------------- /test/ViRegisterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/ViRegisterTests.cs -------------------------------------------------------------------------------- /test/WindowsAnsiInputTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/WindowsAnsiInputTest.cs -------------------------------------------------------------------------------- /test/WordsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/WordsTest.cs -------------------------------------------------------------------------------- /test/WordsTests.VI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/WordsTests.VI.cs -------------------------------------------------------------------------------- /test/YankPasteTest.VI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/YankPasteTest.VI.cs -------------------------------------------------------------------------------- /test/assets/resizing/physical-line-count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/assets/resizing/physical-line-count.json -------------------------------------------------------------------------------- /test/assets/resizing/renderdata-to-cursor-point.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/assets/resizing/renderdata-to-cursor-point.json -------------------------------------------------------------------------------- /test/keydata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/test/keydata.txt -------------------------------------------------------------------------------- /tools/CheckHelp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/tools/CheckHelp.ps1 -------------------------------------------------------------------------------- /tools/helper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/tools/helper.psm1 -------------------------------------------------------------------------------- /tools/issue-mgmt/CloseDupIssues.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/tools/issue-mgmt/CloseDupIssues.ps1 -------------------------------------------------------------------------------- /tools/releaseTools.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PSReadLine/HEAD/tools/releaseTools.psm1 --------------------------------------------------------------------------------