adding ctrl-alt-t

pull/271/head
Lotfi Messaoudi 2015-08-14 01:05:41 +02:00
parent ea7521212b
commit 6202413632
1 changed files with 2 additions and 0 deletions

View File

@ -70,6 +70,8 @@ Notes:
## Everyday use
-In Almost every linux distro , pressing **ctrl-alt-t** will open a new terminal window.
- In Bash, use **Tab** to complete arguments or list all available commands and **ctrl-r** to search through command history (after pressing, type to search, press **ctrl-r** repeatedly to cycle through more matches, press **Enter** to execute the found command, or hit the right arrow to put the result in the current line to allow editing).
- In Bash, use **ctrl-w** to delete the last word, and **ctrl-u** to delete all the way back to the start of the line. Use **alt-b** and **alt-f** to move by word, **ctrl-a** to move cursor to beginning of line, **ctrl-e** to move cursor to end of line, **ctrl-k** to kill to the end of the line, **ctrl-l** to clear the screen. See `man readline` for all the default keybindings in Bash. There are a lot. For example **alt-.** cycles through previous arguments, and **alt-*** expands a glob.