Function | Shortcut |
---|---|
New Tab | ⌘ + T |
Close Tab or Window | ⌘ + W (same as many mac apps) |
Go to Tab | ⌘ + Number Key (ie: ⌘2 is 2nd tab) |
Go to Split Pane by Direction | ⌘ + Option + Arrow Key |
Cycle iTerm Windows | ⌘ + backtick (true of all mac apps and works with desktops/mission control) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# forked from https://gist.github.com/bradp/bea75b16d3325f5c47d4 | |
# usage: | |
# 1) attach ssd to old machine and start running backup.sh | |
# 2) grab the latest version of this file from | |
# https://gist.github.com/jsundram/eeca472a8929bfab27209783b16bd6d9 | |
# 3) copy this script onto the new machine and start running it | |
# sh setup.sh | |
# you will need to add homebrew to your .zprofile path | |
# PATH=$PATH:/opt/homebrew/bin | |
# echo 'export PATH="/opt/homebrew/bin:$PATH"' >> ~/.zprofile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | |
-- open currently active Chrome tab with Safari | |
-- forked from https://gist.github.com/3151932 and https://gist.github.com/3153606 | |
-- | |
property theURL : "" | |
tell application "Google Chrome" | |
set theURL to URL of active tab of window 0 | |
end tell | |
if appIsRunning("Safari") then |