1. Fish Shell

  2. Nushell

  3. Dune

  4. Xonsh

  5. Hilbish

  6. Elvish

  7. Oh

  8. Solidity

  9. Yash

  • ☆ Yσɠƚԋσʂ ☆
    link
    81 year ago

    I’ve been using fish for years, and highly recommend it. In particular, I find that fish has excellent contextual completion based on folder as well as great highlighting.

    • @Kajika
      link
      41 year ago

      I tried and liked it a lot years ago. But the piping wasn’t asynchronous so you have to wait the full completion of the first command for the next.

      I’m not sure about the current state but if that is fixed I would happily fully switch.

      • ☆ Yσɠƚԋσʂ ☆
        link
        01 year ago

        Looks like the latest version streams output from one command to the other. For example, when I run for i in (seq 1 5); sleep 1; echo $i; end | cat I see the numbers show up one at a time.