aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/_posts/2014-11-30-opera-style-advanced-keyboard-shortcuts-in-safari.md10
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
+```