Skip to content

Instantly share code, notes, and snippets.

@mkfares
Last active April 27, 2024 08:49
Show Gist options
  • Star 80 You must be signed in to star a gist
  • Fork 16 You must be signed in to fork a gist
  • Save mkfares/e23eb57d943145eb543d97ac7ef05732 to your computer and use it in GitHub Desktop.
Save mkfares/e23eb57d943145eb543d97ac7ef05732 to your computer and use it in GitHub Desktop.
Common zsh Keyboard Shortcuts on macOS Catalina

Common zsh Keyboard Shortcuts on macOS

Navigation

CTRL + A : Move the cursor to the beginning of the line
CTRL + E : Move the cursor to the end of the line
OPTION + Left Arrow : Move the cursor one word backward
OPTION + Right arrow : Move the cursor one word forward
Left Arrow : Move the cursor one character backward
Right Arrow : Move the cursor one character forward

Deletion

CTRL + U : Delete the current line
CTRL + K : Delete from the cursor to the end of the line
ESC + Backspace : Delete one word backward
CTRL + W : Delete one word backward
CTRL + D : Delete one character forward
Fn + Backspace : Delete one character forward
Backspace : Delete one character backward
CTRL + L : Clear the screen

Undo

CTRL + _ : Undo the last change

Process and Shell

CTRL + C : Terminate the running foreground process
CTRL + Z : Suspend the running foreground process
CTRL + D : Exit current shell

History

Up Arrow : Recall the previous command in history
Down Arrow : Recall the next command in history
CTRL + R : Search the command history
CTRL + G : Escape from command search mode
!! : Execute the last typed command
!pw : Execute the last command in history that begins with pw

Auto-completion

TAB : Auto-complete the typed command
TAB TAB : Show list of commands
TAB TAB TAB ... : Cycle through matched commands

List all Keyboard Shortcuts

% bindkey

@elcolie
Copy link

elcolie commented Oct 10, 2020

bindkey 👍

@mBillan
Copy link

mBillan commented Jan 31, 2022

That was helpful 👍 thanks

@joelz
Copy link

joelz commented Feb 10, 2022

That was helpful 👍 thanks

@wtmpx
Copy link

wtmpx commented Mar 17, 2022

< filename ; will display "filename" file ; less-than sign "<" call less command.

@kmbenjel
Copy link

kmbenjel commented Jun 7, 2022

Thanks

@adam-kral
Copy link

adam-kral commented Sep 26, 2022

For changing behavior of ctrl-u to delete not the entire line but just up to the cursor use this: https://super-unix.com/unixlinux/ctrl-u-deletes-whole-line-regardless-of-cursor-position/

@Alireza-Safdari-Khosroshahi

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment