nicoeltano
nicoeltano

Reputation: 71

Intellisense terminal on vscode

How can I enable intellisense in the terminal in vscode? When I start typing, automatically hints come out on the side. I post an image as an example(In this image, I type with and alongside in light gray I get the suggestions). Thanks.

EXAMPLE

Upvotes: 7

Views: 8086

Answers (3)

Long
Long

Reputation: 1793

For the newest update, vscode already supported intellisense for PowerShell. But note that what's in your screenshot was more like zsh-autosuggestions - a plugin for zsh.

enter image description here

Upvotes: 1

Blooxar
Blooxar

Reputation: 61

you've probably already figured it out, but for the next person switching to VS Code: right arrow key

Upvotes: 6

AnsonH
AnsonH

Reputation: 3256

VS Code does not support IntelliSense inside the integrated Terminal window.

The auto-suggestion feature in your screenshot comes from a Z shell plug-in called "zsh-autosuggestions". You may check out that repository's INSTALL.md readme page to learn how to install the plug-in in your Z-shell.

Note: Z shell ("zsh" in short) is a Unix shell that can be run in Linux or MacOS. If you are a Windows user, check out this guide on how to install Z shell using Windows Subsystem Linux.

Upvotes: 7

Related Questions