zsh-autosuggestions

Fish-like autosuggestions for zsh (by zsh-users)

Zsh-autosuggestions Alternatives

Similar projects and alternatives to zsh-autosuggestions

  1. ohmyzsh

    ๐Ÿ™ƒ A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up with the latest updates from the community.

  2. InfluxDB

    InfluxDB โ€“ Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. fzf

    :cherry_blossom: A command-line fuzzy finder

  4. nvm

    Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions

  5. fish-shell

    The user-friendly command line shell.

  6. starship

    โ˜„๐ŸŒŒ๏ธ The minimal, blazing-fast, and infinitely customizable prompt for any shell!

  7. thefuck

    Magnificent app which corrects your previous console command.

  8. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  9. zsh-syntax-highlighting

    Fish shell like syntax highlighting for Zsh.

  10. zsh-autocomplete

    ๐Ÿค– Real-time type-ahead completion for Zsh. Asynchronous find-as-you-type autocompletion.

  11. Warp

    Warp is a modern, Rust-based terminal with AI built in so you and your team can build great software, faster.

  12. mcfly

    Fly through your shell history. Great Scott!

  13. autojump

    A cd command that learns - easily navigate directories from the command line

  14. fzf-tab

    Replace zsh's default completion selection menu with fzf!

  15. prezto

    The configuration framework for Zsh

  16. zsh4humans

    A turnkey configuration for Zsh

  17. zsh-z

    Jump quickly to directories that you have visited "frecently." A native Zsh port of z.sh with added features.

  18. zsh-completions

    Additional completion definitions for Zsh.

  19. zimfw

    Zim: Modular, customizable, and blazing fast Zsh framework

  20. zsh-abbr

    The zsh manager for auto-expanding abbreviations, inspired by fish. ~27,000 clones by ~17,000 unique cloners as of late Nov '24, and averaging ~60 Homebrew installs monthly since June 2023

  21. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better zsh-autosuggestions alternative or higher similarity.

zsh-autosuggestions discussion

Log in or Post with
  1. User avatar
    nekofar
    ยท 11 months ago
    ยท Reply

    Review โ˜…โ˜…โ˜…โ˜…โ˜… 9/10

zsh-autosuggestions reviews and mentions

Posts with mentions or reviews of zsh-autosuggestions. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-02-08.
  • Supercharge Your Mac Terminal: A Step-by-Step Guide to iTerm2, Oh My Zsh & Powerlevel10k
    5 projects | dev.to | 8 Feb 2025
    # 1. Backup existing configuration cp ~/.zshrc ~/.zshrc.backup 2>/dev/null || echo "No existing ~/.zshrc" # 2. Install Homebrew /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" # 3. Install iTerm2 brew install --cask iterm2 # 4. Install Oh My Zsh sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" # 5. Install Powerlevel10k theme git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k sed -i '' 's/ZSH_THEME="robbyrussell"/ZSH_THEME="powerlevel10k\/powerlevel10k"/' ~/.zshrc # 6. Install essential plugins git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting brew install autojump # 7. Restart terminal or reload configuration source ~/.zshrc
  • Shunpo: Minimalist bash tool to make directory navigation a little bit faster
    8 projects | news.ycombinator.com | 26 Jan 2025
    I have a utility called ZSH Autosuggestions, and it's probably one of the most useful things on my computer. It shows you a sort of preview of the most recent command you typed that matches the prefix of the current command you are typing. It's basically an automatic tool that bookmarks commands based on usage. I think the best bookmark systems are ones which simply track your entire history and suggest relevant pages based on it. That way the process of bookmark creation is automatic and you don't have to predict what you will need to access frequently.

    https://github.com/zsh-users/zsh-autosuggestions?tab=readme-...

  • Make the zsh Prompt Go Faster
    7 projects | dev.to | 29 Dec 2024
    zsh can compile zsh scripts using the builtin zcompile into wordcode. This will have the effect of having faster parsing. The way we use this to get a faster prompt is to explicitly ask zsh to compile certain chunky plugins(think your syntax highlighters and completion plugins) into wordcode.
  • Customize iTerm
    1 project | dev.to | 28 Dec 2024
    git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
  • Finding Terminal Utopia
    4 projects | dev.to | 22 May 2024
    This is not intuitive, or efficient, so our first task is fix that using zsh-autosuggestions. zsh-autosuggestions will provide autocomplete suggestions from your history (and other locations) as you type, simply press the right arrow key, or use the end-of-line keyboard shortcut (e.g. ctrl+e) to accept the suggestion. If you only want part of a suggestion, you can use the forward-word keyboard shortcut, which is option+right arrow or alt+right arrow which will complete only up to the end of the next word and continue providing suggestions from there.
  • iTerm2 3.5.0
    6 projects | news.ycombinator.com | 21 May 2024
    I'm using the zsh-autosuggestion plugin (so not a feature of the terminal but of the shell):

    https://github.com/zsh-users/zsh-autosuggestions

  • Zsh + Oh My Zsh
    4 projects | dev.to | 12 May 2024
    git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions
  • Ditch Your Boring Terminal and Make it More Useful
    6 projects | dev.to | 11 May 2024
    Do you like typing? I guess not. We can have some autosuggestion inside our terminal by using a plugin named zsh-autosuggestions.
  • Melhorando e configurando seu novo Shell linux. Pt-2
    5 projects | dev.to | 2 May 2024
    git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions && git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting && git clone https://github.com/zdharma-continuum/fast-syntax-highlighting.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/fast-syntax-highlighting && git clone --depth 1 -- https://github.com/marlonrichert/zsh-autocomplete.git $ZSH_CUSTOM/plugins/zsh-autocomplete
  • Improve your productivity by using more terminal and less mouse (๐Ÿš€).
    2 projects | dev.to | 30 Apr 2024
    If you are not using oh-my-zsh, you are missing out on some amazing plugins. One feature most people wish the terminal had is autocompletion. With the zsh-autosuggestions plugin, your terminal will autocomplete most commands and remember previous ones.
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 13 May 2025
    InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now. Learn more โ†’

Stats

Basic zsh-autosuggestions repo stats
144
32,886
4.4
6 months ago

Sponsored
InfluxDB โ€“ Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com