> Oh, and search is case insensitive. No more spending hours banging at the tab, wondering why autocomplete isnt working
echo 'set completion-ignore-case On' >> ~/.inputrc
> history search is great-- type the 1st few lines of a command and press up, it will take you to the last time the command was used
CTRL+R and begin typing. CTRL+R again to go to next result.
> instead of git commit -a -m "message" I can do gcam "message"
echo 'alias gcam="git commit -a -m"' >> ~/.bashrc
> Oh, and search is case insensitive. No more spending hours banging at the tab, wondering why autocomplete isnt working
echo 'set completion-ignore-case On' >> ~/.inputrc
> history search is great-- type the 1st few lines of a command and press up, it will take you to the last time the command was used
CTRL+R and begin typing. CTRL+R again to go to next result.
> instead of git commit -a -m "message" I can do gcam "message"
echo 'alias gcam="git commit -a -m"' >> ~/.bashrc