Mac Keyboard Shortcuts
==================================
OS X
==================================
Opening a new tab:
Command + t
Closing a tab or window:
Command + w
Toggling between open programs:
Command + Tab
Toggling between the windows of same application:
Command + `
Toggling to a specific tab:
Command + 1, Command + 2, Command + 3, etc..
Toggling between the tabs of an app:
Go Right: Command + Shift + ]
Go Left : Command + Shift + [
--- OR ---
Go Right: Ctrl + Tab
Go Left : Ctrl + Shift + Tab
Toggling between browser history:
Go Fwd : Command + ]
Go Back: Command + [
Open a new window/instance of the same app
Command + N
Google Chrome Developer Console:
Cmd + Alt + i
==================================
How to create a custom shortcut
==================================
Open up Automator (in the Applications folder) and choose a Service template. From the library choose "Run Shell Script" and drag it across to the workflow area. In the text box paste the following command:
STATUS=`defaults read com.apple.finder AppleShowAllFiles`
if [ $STATUS == YES ];
then
defaults write com.apple.finder AppleShowAllFiles NO
else
defaults write com.apple.finder AppleShowAllFiles YES
fi
killall Finder
Finally, change the "text" drop-down menu to “no input” and then save you workflow as “Toggle Hidden Files”.
Now if you go to the Finder menu and look under Services, you should find a “Toggle Hidden Files” option. To add the keyboard shortcut, go to the Keyboard section of System Preferences and click the Keyboard shortcuts tab. Select Services from the list on the left, then scroll down to the bottom of the list on the right to find “Toggle Hidden Files”. Double-click on the area to the right of it, then press the keyboard shortcut you want. I used Command-Shift-. (dot).
==================================
BOOTCAMP WINDOWS
==================================
Print Screen:
Fn, Shift and F11 keys
Insert Key:
Fn + Enter