logoalt Hacker News

harikbtoday at 7:06 PM2 repliesview on HN

Clearly I am missing some setting. On zsh on macOS and I tried what you just said and it doesn't work like this


Replies

chrisweeklytoday at 8:12 PM

FWIW I'm also on macos 15.7.9, zsh 5.9, oh-my-zsh - and I do get this behavior (TIL).

type eg "rg" then up or down arrow, and the history shown is filtered by that rg prefix.

applicativetoday at 9:32 PM

I was missing it too. Google says it's a builtin zsh feature but mac doesn't turn it on by default, so you add these to `~/.zshrc`

    bindkey '^[[A' history-search-backward
    bindkey '^[[B' history-search-forward
So far it works. Thank you diath.