Two, random interesting learnings from Julia’s survey results:
The first
ctrl + l clears the terminal.
I used to rely on cmd + k for this but when using the embedded terminal in Cursor, it opens a completion panel so I had been briefly stuck typing clear
.
The second
history 0
which gets the all time shell command history.
This is useful for history 0 | grep <query>
.
I use fzf
and ctrl + r to search through the history typically but this is still nice to know.
This had be an edge case I never quite resolved in my switch to zsh.
I was used to getting full history in bash with history
.