diff --git a/guides/GettingStarted.html b/guides/GettingStarted.html index 7e890d585..051d881b0 100755 --- a/guides/GettingStarted.html +++ b/guides/GettingStarted.html @@ -1313,7 +1313,7 @@
First, switch over to Developer Mode. Go to the Developer
menu and select Run with debug flags...
. Developer Mode turns on better exception logging and enables hot-reloading.
Next, choose Create a Plugin...
from the Developer
menu, and name your new plugin. This creates a directory in ~/.nylas/dev/packages
containing your new plugin.
Next, choose Create a Plugin...
from the Developer
menu, and name your new plugin. This creates a directory in ~/.nylas/dev/packages
containing your new plugin (on MacOS it can be found in ~/Library/Application\ Support/Mailspring-dev/dev/packages/
).
Open the file <your-package-name>/lib/my-message-sidebar.cjsx
in your favorite text editor. Your new plugin is pre-filled with a simple example component for the message sidebar (on the right when you're viewing an email). It only shows the name of the selected contact, but with a few quick changes we can build something more interesting.
Scroll down to line 34, the render
method. Replace the code here to change what shows up in the sidebar. See your changes happen live when you save!