All Projects → yangshun → mac-terminal-shortcuts

yangshun / mac-terminal-shortcuts

Licence: MIT license
Useful and common terminal shortcuts for macOS

Projects that are alternatives of or similar to mac-terminal-shortcuts

Hotkeys
➷ A robust Javascript library for capturing keyboard input. It has no dependencies.
Stars: ✭ 5,165 (+13143.59%)
Mutual labels:  keyboard, shortcuts
quickey
⚡️ Quickey creates keyboard shortcuts for your web apps
Stars: ✭ 37 (-5.13%)
Mutual labels:  keyboard, shortcuts
hotkey
⌨️ cross-platform hotkey package
Stars: ✭ 82 (+110.26%)
Mutual labels:  keyboard, shortcuts
Shortcutmapper
A visual keyboard shortcuts explorer for popular applications.
Stars: ✭ 657 (+1584.62%)
Mutual labels:  keyboard, shortcuts
react-keyboard-shortcuts
A declarative library for handling hotkeys based on explicit priority in React applications
Stars: ✭ 23 (-41.03%)
Mutual labels:  keyboard, shortcuts
use-keyboard-shortcut
A custom hook that allows adding keyboard shortcuts to React applications
Stars: ✭ 41 (+5.13%)
Mutual labels:  keyboard, shortcuts
FormToolbar
Simple, movable and powerful toolbar for UITextField and UITextView.
Stars: ✭ 85 (+117.95%)
Mutual labels:  keyboard
cheatsheet-generator
Generates cheatsheets for your (favourite) apps
Stars: ✭ 49 (+25.64%)
Mutual labels:  shortcuts
MyAHKScript
An AutoHotkey script that I use on the daily basis for my PC. Comes with an installer that takes care of everything for you.
Stars: ✭ 22 (-43.59%)
Mutual labels:  keyboard
react-shortcut
Convenient React component that detects if the given key combination is pressed, and triggers a callback
Stars: ✭ 16 (-58.97%)
Mutual labels:  shortcuts
keeb
The code for a handwired bluetooth keyboard made from two halves, with no wires inbetween.
Stars: ✭ 25 (-35.9%)
Mutual labels:  keyboard
improved-osk-gnome-ext
Improved On Screen Keyboard for Gnome Shell
Stars: ✭ 22 (-43.59%)
Mutual labels:  keyboard
keyboard
A terrible terrible soft-keyboard that randomises keys on every press.
Stars: ✭ 17 (-56.41%)
Mutual labels:  keyboard
KeyboardLayoutHelper
Keyboard layout constraint class for iOS written in Swift to help adapt UIView to the appearing keyboard, so textfields don't get lost underneath it'.
Stars: ✭ 17 (-56.41%)
Mutual labels:  keyboard
DesktopComposer
Manage Start Menu and Desktop Shortcuts for Windows 10/Windows 2019 in Active Directory Environment
Stars: ✭ 41 (+5.13%)
Mutual labels:  shortcuts
Keyboard
Master of keyboard is master of automation (Key remapper implementation in Swift)
Stars: ✭ 45 (+15.38%)
Mutual labels:  keyboard
metaKeyboard
turn a common keyboard into a 61-key keyboard for the keyboard shortcut fun like you, I'm a programer, I want to improve coding efficiency
Stars: ✭ 30 (-23.08%)
Mutual labels:  keyboard
iOSUtilitiesSource
IOS Utilities Library for Swift
Stars: ✭ 46 (+17.95%)
Mutual labels:  keyboard
KeyBoardTool
Keyboard key detection software realized by Qt(Qt实现的键盘按键检测软件)
Stars: ✭ 35 (-10.26%)
Mutual labels:  keyboard
KeyCommandAlertController
UIAlertController wrapper to add keyboard shortcuts easily
Stars: ✭ 16 (-58.97%)
Mutual labels:  keyboard

Mac Terminal Shortcuts

A list of useful terminal shortcuts for macOS. Some obscure shortcuts like capitalizing words are purposely omitted.

Note: To use the Alt Key Shortcuts in macOS:

Open Terminal > Preferences > Profiles Tab > Keyboard Tab > Check "Use option as meta key"

Cursor Movement

Shortcut Description
Ctrl + E Move cursor to end of the line
Ctrl + A Move cursor to start of the line
Ctrl + F Move cursor one character forward
Ctrl + B Move cursor one character backward
Alt + F / Alt + Right Move cursor one word forward
Alt + B / Alt + Left Move cursor one word backward
Alt + Click Move cursor to clicked character
Ctrl + XX Toggle between the start of line and cursor position

Editing

Commands with "Cut" will add the cut portion to the clipboard.

Shortcut Description
Ctrl + L Clears the screen
Ctrl + D Delete character under the cursor
Ctrl + H Delete character before the cursor
Ctrl + K Cut everything from the cursor to end of the line
Ctrl + W / Alt + Backspace Cut the current word before the cursor
Alt + D Delete the word after the cursor
Ctrl + U Cut the line before the cursor
Ctrl + Y Paste the previous cut text
Ctrl + _ Undo your last key press. You can repeat this to undo multiple times
Ctrl + T Swap the last two characters before the cursor
Esc + T Swap the last two words before the cursor

History

Shortcut Description
Ctrl + P Previous command
Ctrl + R Next command
Ctrl + S Forward search
Ctrl + R Reverse search
Ctrl + O End search and execute command
Ctrl + G Abort search (restores original line)

Process

Shortcut Description
Ctrl + C Kills current task (SIGINT)
Ctrl + D Inserts an EOF
Ctrl + Z Pauses current task
Ctrl + S Stop output to the screen (for long running verbose commands)
Ctrl + Q Allow output to the screen (if previously stopped using stop output command)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].