PSReadLine VS PSFzf

Compare PSReadLine vs PSFzf and see what are their differences.

PSReadLine

A bash inspired readline implementation for PowerShell (by PowerShell)

PSFzf

A PowerShell wrapper around the fuzzy finder fzf (by kelleyma49)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
PSReadLine PSFzf
15 5
3,534 716
2.0% -
7.6 6.8
6 days ago 7 days ago
C# PowerShell
BSD 2-clause "Simplified" License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

PSReadLine

Posts with mentions or reviews of PSReadLine. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-08.

PSFzf

Posts with mentions or reviews of PSFzf. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-08.
  • Tools to achieve a 10x developer workflow on Windows
    11 projects | dev.to | 8 Nov 2023
    Sets up PSFzf: PowerShell wrapper for fzf, for fuzzy finding files and directories
  • GitHub – kelleyma49/PSFzf: A PowerShell wrapper around the fuzzy finder fzf
    1 project | news.ycombinator.com | 6 Nov 2022
  • 8 tips for setting up PowerShell on Windows
    8 projects | dev.to | 15 Apr 2022
    # To make ZLocation module work in every PowerShell instance. Import-Module ZLocation # PSFzf has undocumented option to use fd executable for # file and directory searching. This enables that option. Set-PsFzfOption -EnableFd:$true # Custom function to SetLocation, because PSFzf uses # Get-ChildItem which doesn't use fd and doesn't use # ignore files. Invoke-FuzzySetLocation is defined here # https://github.com/kelleyma49/PSFzf/blob/b97263a30addd9a2c84a8603382c92e4e6de0eeb/PSFzf.Functions.ps1#L142 # # This implementation is for setting FileSystem location # and implementation uses parts of # https://github.com/kelleyma49/PSFzf/blob/b97263a30addd9a2c84a8603382c92e4e6de0eeb/PSFzf.Base.ps1#L20 # https://github.com/kelleyma49/PSFzf/blob/b97263a30addd9a2c84a8603382c92e4e6de0eeb/PSFzf.Base.ps1#L35 function Invoke-FuzzySetLocation2() { param($Directory = $null) if ($null -eq $Directory) { $Directory = $PWD.Path } $result = $null try { # Color output from fd to fzf if running in Windows Terminal $script:RunningInWindowsTerminal = [bool]($env:WT_Session) if ($script:RunningInWindowsTerminal) { $script:DefaultFileSystemFdCmd = "fd.exe --color always . {0}" } else { $script:DefaultFileSystemFdCmd = "fd.exe . {0}" } # Wrap $Directory in quotes if there is space (to be passed in fd) if ($Directory.Contains(' ')) { $strDir = """$Directory""" } else { $strDir = $Directory } # Call fd to get directory list and pass to fzf Invoke-Expression (($script:DefaultFileSystemFdCmd -f '--type directory {0} --max-depth 1') -f $strDir) | Invoke-Fzf | ForEach-Object { $result = $_ } } catch { } if ($null -ne $result) { Set-Location $result } } # Show tips about newly added commands function Get-Tips { $tips = @( [pscustomobject]@{ Command = 'fcd' Description = 'navigate to subdirectory' }, [pscustomobject]@{ Command = 'ALT+C' Description = 'navigate to deep subdirectory' }, [pscustomobject]@{ Command = 'z' Description = 'ZLocation' }, [pscustomobject]@{ Command = 'fz' Description = 'ZLocation through fzf' }, [pscustomobject]@{ Command = 'fe' Description = 'fuzzy edit file' }, [pscustomobject]@{ Command = 'fh' Description = 'fuzzy invoke command from history' }, [pscustomobject]@{ Command = 'fkill' Description = 'fuzzy stop process' }, [pscustomobject]@{ Command = 'fd' Description = 'find https://github.com/sharkdp/fd#how-to-use' }, [pscustomobject]@{ Command = 'rg' Description = 'find in files https://github.com/BurntSushi/ripgrep/blob/master/GUIDE.md' } ) Write-Output $tips | Format-Table } # Define aliases to call fuzzy methods from PSFzf New-Alias -Scope Global -Name fcd -Value Invoke-FuzzySetLocation2 -ErrorAction Ignore New-Alias -Scope Global -Name fe -Value Invoke-FuzzyEdit -ErrorAction Ignore New-Alias -Scope Global -Name fh -Value Invoke-FuzzyHistory -ErrorAction Ignore New-Alias -Scope Global -Name fkill -Value Invoke-FuzzyKillProcess -ErrorAction Ignore New-Alias -Scope Global -Name fz -Value Invoke-FuzzyZLocation -ErrorAction Ignore
  • Windows Terminal Quake Mode
    11 projects | news.ycombinator.com | 30 Apr 2021
    Are you using PSFzf or something else? https://github.com/kelleyma49/PSFzf
  • PsFzf Open File / Open Directory
    1 project | /r/PowerShell | 6 Mar 2021
    kelleyma49/PSFzf: A PowerShell wrapper around the fuzzy finder fzf β€” https://github.com/kelleyma49/PSFzf

What are some alternatives?

When comparing PSReadLine and PSFzf you can also consider the following projects:

ohmyzsh - πŸ™ƒ A delightful community-driven (with 2,300+ 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 so that makes it easy to keep up with the latest updates from the community.

winget-cli - WinGet is the Windows Package Manager. This project includes a CLI (Command Line Interface), PowerShell modules, and a COM (Component Object Model) API (Application Programming Interface).

libxo - The libxo library allows an application to generate text, XML, JSON, and HTML output using a common set of function calls. The application decides at run time which output style should be produced.

Windows Terminal - The new Windows Terminal and the original Windows console host, all in the same place!

PSScriptAnalyzer - Download ScriptAnalyzer from PowerShellGallery

AutoHotkey - AutoHotkey - macro-creation and automation-oriented scripting utility for Windows.

oh-my-posh - The most customisable and low-latency cross platform/shell prompt renderer

PSGSuite - Powershell module for Google / G Suite API calls wrapped in handy functions. Authentication is established using a service account via P12 key to negate the consent popup and allow for greater handsoff automation capabilities

bass - Make Bash utilities usable in Fish shell

Scoop - A command-line installer for Windows.

Rectangle - Move and resize windows on macOS with keyboard shortcuts and snap areas