Repository for PowerShell setup scripts for Windows, Linux and macOS.
.
├── .config # configuration files
│ ├── omp_cfg # oh-my-posh themes
│ └── pwsh_cfg # PowerShell profiles and aliases/functions
├── .vscode # VSCode configuration
└── scripts # helper scripts and functions for running other scripts
│ ├── linux # Linux setup scripts
│ │ └── .include # installation scripts
│ ├── macos # macOS setup scripts
│ │ └── .include # installation scripts
│ └── windows # Windows setup scripts
│ └── .include # installation scripts
One of the best features for the PS CLI experience is the PSReadLine List PredictionView. Included profile turns it on by default, but also sets convenient shortcuts for navigation, so you don't have to take off your hand to reach the arrows:
Alt+j
- to select next element on the listAlt+k
- to select the previous element on the list
Doesn't work on macOS 😞.
Tab
- expands menu completion, you can navigate it with arrowsF2
- switch between List*_ and Inline prediction viewShift+Tab
- accept inline suggestionCtrl+LeftArrow
- navigate word leftCtrl+RightArrow
- navigate word rightAlt+Delete
- delete whole command line