Skip to content

Instantly share code, notes, and snippets.

@oguzoldev
Last active February 18, 2017 18:15
Show Gist options
  • Save oguzoldev/323dd2af1e60e043d19a57818ba8b871 to your computer and use it in GitHub Desktop.
Save oguzoldev/323dd2af1e60e043d19a57818ba8b871 to your computer and use it in GitHub Desktop.

Full Keyboard Access

Enable Tab in modal dialogs.

# Full Keyboard Access OFF and Text boxes and lists only
defaults write NSGlobalDomain AppleKeyboardUIMode -int 0

# Full Keyboard Access ON and Text boxes and lists only
defaults write NSGlobalDomain AppleKeyboardUIMode -int 1

# Full Keyboard Access OFF and All controls
defaults write NSGlobalDomain AppleKeyboardUIMode -int 2

# Full Keyboard Access ON and All controls
defaults write NSGlobalDomain AppleKeyboardUIMode -int 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment