this post was submitted on 19 Nov 2023
389 points (95.8% liked)

Programmer Humor

32050 readers
1528 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] xmunk@sh.itjust.works 13 points 10 months ago* (last edited 10 months ago) (2 children)

I seriously pity people who don't know ctrl+r that is one of the most important tools for productivity on the cli.

[–] naught@sh.itjust.works 9 points 10 months ago* (last edited 10 months ago)

And you can hook in fzf to it to get a proper list of previous commands all fuzzy matched!! Oh-my-zsh just requires adding fzf to your plugins list (:

I survived for years with just https://github.com/zsh-users/zsh-autosuggestions which is similarly great, but fills a slightly different role. Just start typing and you'll see a faded preview of the most recent command matching & u ctrl+f to autocomplete it. Is gr8

e: clarified what zsh-autosuggest does

[–] catastrophicblues@lemmy.ca 1 points 10 months ago

I’ve found it’s a bit overrated honestly. Usually, I also need the commands before and after something, so I use history | grep -B N cmd instead