I came here to mention that I recently re-mapped my CAPS LOCK key and made it my Compose key.
<aol>Me, too!</aol>
I don't think I have ever used CAPS LOCK on purpose, and whenever I accidentally hit it, I end up backspacing and retyping -- unless I happen to be using Vim at the time, in which case the tilde key ("~") allows me to toggle case without retyping!)
Authored Comments
Hey @Adam,
I came here to mention that I recently re-mapped my CAPS LOCK key and made it my Compose key.
<aol>Me, too!</aol>
I don't think I have ever used CAPS LOCK on purpose, and whenever I accidentally hit it, I end up backspacing and retyping -- unless I happen to be using Vim at the time, in which case the tilde key ("~") allows me to toggle case without retyping!)
1.) To stash everything, whether or not it is staged for commit:
alias gstu='git stash --include-untracked'
2.) To restore everything you've stashed:
alias gstp='git stash pop'