Skip to content

Instantly share code, notes, and snippets.

@hamitozdemir
Last active September 11, 2019 08:43
Show Gist options
  • Save hamitozdemir/d47eed83db3fb2e68a777f7239a890bb to your computer and use it in GitHub Desktop.
Save hamitozdemir/d47eed83db3fb2e68a777f7239a890bb to your computer and use it in GitHub Desktop.
Some terminal shortcuts
  • CTRL-a Beginning of Line

  • CTRL-e End of line

  • CTRL-k Cut out everything to the right of the cursor (saves in the clipboard too)

  • CTRL-m Like hitting enter

  • CTRL-y Paste

  • CTRL-space Set the mark

  • CTRL-w Copy between cursor and the "mark" into the clipboard

  • CTLR-f Forward one character

  • CTRL-b Backward one character

  • CTRL-p Previous line (in history) - NEVER USE your arrow keys!

  • CTRL-n Next line (in history)

  • CTRL-h backspace

    Source reddit/u/manchegoo

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