diff options
author | Zhiming Wang <zmwangx@gmail.com> | 2014-11-30 20:26:08 -0800 |
---|---|---|
committer | Zhiming Wang <zmwangx@gmail.com> | 2014-11-30 20:26:08 -0800 |
commit | ab39e68bdd8c83dd7ed9256af6a9b38583b4a3d4 (patch) | |
tree | c3f7a331bb1a45a9c573e71d22d117e1580eb89b /source | |
parent | 32162381c22b8b7a633985f8dff93c07c1a3ae1e (diff) | |
download | my_new_personal_website-ab39e68bdd8c83dd7ed9256af6a9b38583b4a3d4.tar.xz my_new_personal_website-ab39e68bdd8c83dd7ed9256af6a9b38583b4a3d4.zip |
minor improvement
Diffstat (limited to 'source')
-rw-r--r-- | source/_posts/2014-11-30-opera-style-advanced-keyboard-shortcuts-in-safari.md | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/source/_posts/2014-11-30-opera-style-advanced-keyboard-shortcuts-in-safari.md b/source/_posts/2014-11-30-opera-style-advanced-keyboard-shortcuts-in-safari.md index 175d792d..ed7654f5 100644 --- a/source/_posts/2014-11-30-opera-style-advanced-keyboard-shortcuts-in-safari.md +++ b/source/_posts/2014-11-30-opera-style-advanced-keyboard-shortcuts-in-safari.md @@ -20,10 +20,10 @@ Lately, with the Yosemite release, Safari has become a much more competitive bro ```bash safari-advanced-keyboard-shortcuts.sh #!/usr/bin/env bash -defaults write -app Safari NSUserKeyEquivalents '{ +defaults write com.apple.Safari NSUserKeyEquivalents '{ "Actual Size"="6"; "Back"="z"; -"Find"="/"; +"Find..."="/"; "Forward"="x"; "Show Previous Tab"="1"; "Show Next Tab"="2"; @@ -32,4 +32,8 @@ defaults write -app Safari NSUserKeyEquivalents '{ }' ``` -Relaunch Safari. You are all set! Enjoy the ultrafast single key navigating experience. +Relaunch Safari. You are all set! Enjoy the ultrafast single key navigating experience. To reset, + +```bash +defaults delete com.apple.Safari NSUserKeyEquivalents +``` |