Skip to content

Latest commit

 

History

History
51 lines (40 loc) · 1.36 KB

PowerShellでオートコンプリートを使う.md

File metadata and controls

51 lines (40 loc) · 1.36 KB

PowerShellでオートコンプリートを使う

■環境

■導入

PS C:\Users\masami> node --version
v20.9.0
PS C:\Users\masami> npm install -g @microsoft/inshellisense

added 83 packages in 19s

24 packages are looking for funding
  run `npm fund` for details
npm notice
npm notice New minor version of npm available! 10.1.0 -> 10.2.4
npm notice Changelog: https://github.com/npm/cli/releases/tag/v10.2.4
npm notice Run npm install -g npm@10.2.4 to update!
npm notice
PS C:\Users\masami> inshellisense bind
Select your desired shell for keybinding creation
  bash
  zsh
  fish
  powershell
> pwsh

✓ successfully created new bindings

■使用方法

PS C:\Users\masami> is -s powershell

その後はインテリセンスが機能するようになります
オートコンプリートはこちらのリポジトリを使用している模様

https://github.com/withfig/autocomplete

[例]

1

1

1