Hacker News new | ask | show | jobs
by klysm 1521 days ago
I want to learn powershell, but I have an internal ick bias because I've been using bash for so many years. The tab behavior is the exact opposite of what I expect and it short circuits my brain every single time I press it. Having structured data in the pipes seems very useful and powerful though so I should probably just bite the bullet.
1 comments

Tab behavior is configurable. I have mine set to menu expansion.

    Set-PSReadLineKeyHandler -Key Tab -Function MenuComplete
Thanks for that! I've recently been learning PowerShell. After 30 years of bash it is interesting.