diff --git a/README.md b/README.md index 88ce275..ba5842b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,22 @@ # Shell-Oneliner Based on https://github.com/onceupon/Bash-Oneliner -but mainly for ZSH +but mainly for ZSH, my personal needs and configuration. +## Terminal Tricks + +``` +Ctrl + r : begins a backward search through command history.(keep pressing Ctrl + r to move backward) +Ctrl + a : move to the beginning of line. +Ctrl + e : move to the end of line. +Ctrl + w : cut the word before the cursor; then Ctrl + y paste it +Ctrl + u : cut the line; then Ctrl + y paste it +Ctrl + x + Ctrl + e : launch editor defined by $EDITOR to input your command. Useful for multi-line commands. +``` + +### ... With My Own Configuration + +``` +Ctrl + t : print current date +``` \ No newline at end of file