Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
For the curious: ctrl-s (lock) & ctrl-q (unlock) work much better in most terminals.
That's also the reason the Nano editor does some angry mumbling at you when you instinctively press ctrl-s to save a file. -
ctrl-s/ctrl-q
and you can of course always use "script" to store the output of your command for further investigation
$ script
$ your command
$ exit
or simply
script -c 'your command'
Today I needed the scroll lock key.
I was running a super long test suite, one which puts a green dot on the screen every 500ms, so you can't scroll up. I needed to view some output of an earlier command... in other words, I needed to lock the automatic scrolling of the terminal.
That is what the scroll lock key was made for.
A momentous occasion.
Then I found out that a while ago, I used the macro function of my keyboard to rebind the that key... to close the current terminal window. 😡
rant