├── EditorCommands ├── Demo1.OpenPowerPoint.ps1 ├── Demo2.OpenPsm1.ps1 ├── Demo3.OpenHelpers.ps1 ├── Demo4.OpenPowerPointScript.ps1 ├── Demo5.OpenProfile.ps1 ├── Demo6.GetProcessOutput.ps1 ├── EditorCommand.NewEditorCommandToClipboard.ps1 ├── EditorCommand.NewEditorCommandToFile.ps1 ├── EditorCommand.NewEditorCommandWithSelectedText.ps1 └── Helpers.ps1 ├── Images └── Demo.gif ├── LICENSE ├── PowerShellEditors.pptx ├── Readme.md ├── VSCodePresentations.ps1 └── VSCodePresentations.psm1 /EditorCommands/Demo1.OpenPowerPoint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerane/VSCodePresentations/HEAD/EditorCommands/Demo1.OpenPowerPoint.ps1 -------------------------------------------------------------------------------- /EditorCommands/Demo2.OpenPsm1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerane/VSCodePresentations/HEAD/EditorCommands/Demo2.OpenPsm1.ps1 -------------------------------------------------------------------------------- /EditorCommands/Demo3.OpenHelpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerane/VSCodePresentations/HEAD/EditorCommands/Demo3.OpenHelpers.ps1 -------------------------------------------------------------------------------- /EditorCommands/Demo4.OpenPowerPointScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerane/VSCodePresentations/HEAD/EditorCommands/Demo4.OpenPowerPointScript.ps1 -------------------------------------------------------------------------------- /EditorCommands/Demo5.OpenProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerane/VSCodePresentations/HEAD/EditorCommands/Demo5.OpenProfile.ps1 -------------------------------------------------------------------------------- /EditorCommands/Demo6.GetProcessOutput.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerane/VSCodePresentations/HEAD/EditorCommands/Demo6.GetProcessOutput.ps1 -------------------------------------------------------------------------------- /EditorCommands/EditorCommand.NewEditorCommandToClipboard.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerane/VSCodePresentations/HEAD/EditorCommands/EditorCommand.NewEditorCommandToClipboard.ps1 -------------------------------------------------------------------------------- /EditorCommands/EditorCommand.NewEditorCommandToFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerane/VSCodePresentations/HEAD/EditorCommands/EditorCommand.NewEditorCommandToFile.ps1 -------------------------------------------------------------------------------- /EditorCommands/EditorCommand.NewEditorCommandWithSelectedText.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerane/VSCodePresentations/HEAD/EditorCommands/EditorCommand.NewEditorCommandWithSelectedText.ps1 -------------------------------------------------------------------------------- /EditorCommands/Helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerane/VSCodePresentations/HEAD/EditorCommands/Helpers.ps1 -------------------------------------------------------------------------------- /Images/Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerane/VSCodePresentations/HEAD/Images/Demo.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerane/VSCodePresentations/HEAD/LICENSE -------------------------------------------------------------------------------- /PowerShellEditors.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerane/VSCodePresentations/HEAD/PowerShellEditors.pptx -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerane/VSCodePresentations/HEAD/Readme.md -------------------------------------------------------------------------------- /VSCodePresentations.ps1: -------------------------------------------------------------------------------- 1 | Import-Module .\*.psm1 -------------------------------------------------------------------------------- /VSCodePresentations.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerane/VSCodePresentations/HEAD/VSCodePresentations.psm1 --------------------------------------------------------------------------------