I'm just trying Ubuntu as I'm slowly but surely getting tired of OSX and it's operating systems released every few months with a lot of problems.
One thing that I find quite frustrating when switching to a new system is the shortcuts, which I got used to - especially for Terminal - most of which work similar, but some of them (ones I use the most) differ.
I've seen this post Terminal: Replacing Ctrl+r with Ctrl+k and understand that in order to change shortcut for terminal I need to add it to the ~/.bashrc file in the format:
bind '"\C-k":"\C-r"'
Does anyone know what combination should be used to call reset
as a combination of Alt + k (on OSX it works as as Cmd + k, but hence PCs don't have Cmd
- Alt
is in the same place)?
clear
- it's actuallyreset
that I'm after - on OSX it'sCmd + k
- it resets the session - difference being withclear
only clearing window, but if you scroll up - you'll still see previous commands, whilereset
wipes them out. – Sebastian Sulinski Nov 25 '15 at 16:28