summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Liu <paul@ferociouspings.com>2017-02-13 00:03:42 -0500
committerPaul Liu <paul@ferociouspings.com>2017-02-12 21:03:42 -0800
commitba34ba2e58980c796ec4dfad77610b7c57a90f94 (patch)
tree35234a5698c7e89e0b96a9c068c6bd51f35f1862
parenta7b98f28e157d61bbd8efafed949af4e4ec6a5eb (diff)
Update iA Writer bundle id (#464)1.9.8
-rw-r--r--docs/recipes.rst9
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/recipes.rst b/docs/recipes.rst
index e1aef9a9..ddf6c9cd 100644
--- a/docs/recipes.rst
+++ b/docs/recipes.rst
@@ -108,10 +108,17 @@ On OS X, you can use the fabulous `iA Writer <http://www.iawriter.com/mac>`_ to
.. code-block:: javascript
- "editor": "open -b jp.informationarchitects.WriterForMacOSX -Wn"
+ "editor": "open -b pro.writer.mac -Wn"
What does this do? ``open -b ...`` opens a file using the application identified by the bundle identifier (a unique string for every app out there). ``-Wn`` tells the application to wait until it's closed before passing back control, and to use a new instance of the application.
+If the ``pro.writer.mac`` bundle identifier is not found on your system, you can find the right string to use by inspecting iA Writer's ``Info.plist`` file in your shell:
+
+.. code-block:: sh
+
+ $ grep -A 1 CFBundleIdentifier /Applications/iA\ Writer.app/Contents/Info.plist
+ <key>CFBundleIdentifier</key>
+ <string>pro.writer.mac</string>
Notepad++ on Windows
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~