intelli-shell 3.4.1

Like IntelliSense, but for shells
Documentation
Examples:
  # Add the following to your .bashrc:
  eval "$(intelli-shell init bash)"

  # Add the following to your .zshrc:
  eval "$(intelli-shell init zsh)"

  # Add the following to your config.fish:
  intelli-shell init fish | source

  # Add the following to your config.nu:
  intelli-shell init nushell | save -f ($nu.data-dir | path join "vendor/autoload/intelli-shell.nu")

  # Add the following to your PowerShell profile:
  intelli-shell init powershell | Out-String | Invoke-Expression
  
  # If you want to avoid completions and use only the integration
  eval "$(intelli-shell init bash --integration)"

  # Or to skip the shell integration and just add cli completions
  eval "$(intelli-shell init bash --completions)"