this post was submitted on 16 Aug 2024
604 points (98.1% liked)
Programmer Humor
32400 readers
252 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I will have to try that, I didn't know that functionality existed, thanks!
Let me tell you that you can also add comments to your terminal commands and use them to search history using fzf. This might sound confusing but basically you do this:
commandwithweirdoptions --option1=value1 --option2=value2 # run the usual thing
Then you press Ctrl+R and type anything like «the thing», it uses fuzzy matching and finds the command in history, with a menu of other similar commands. Press enter, done.
Note that you need to have fzf installed, otherwise there is no fuzzy matching and no menu of matching history results.
Seems to work with [Ctrl]+[R] as well, though of course only with exact matches.
Sure, just as I said, this would work id you don't need menu or fuzzy matching. But I would recommend using fzf history search anyway, it's just too good.
M-hm, I will try it as well! I was just letting people know the comment trick works regardless, cause that's a nice tip as well!