DEV Community

Syed Shoebuddin
Syed Shoebuddin

Posted on

Adding Auto complete Feature in Terminal of VS code

Get previously and frequently typed commands in your VS code Terminal.

Follow these Below Steps to automate your Terminal-

  • Set your default terminal for your vs code as Powershell.
  • Now if it's not working it's because of that warning when we start our new powershell- Warning: PowerShell detected that you might be using a screen reader and has disabled PSReadLine for compatibility purposes. If you want to re-enable it, run 'Import-Module PSReadLine'.
  • Due to this disabled 'PSReadline' your autocomplete is not working.
  • Now, run this below command in your vs code Powershell Terminal-
Import-Module PSReadLine
Enter fullscreen mode Exit fullscreen mode

This should Definitely solve your problem, if not feel free to correct me.

Top comments (0)