Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated text to reflect new-ish location of 'New Plugin' and 'Syntax' #256

Open
wants to merge 1 commit into
base: sublime-text-3
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/extensibility/plugins.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Your First Plugin

Let's write a "Hello, World!" plugin for Sublime Text:

#. Select **Tools | New Plugin...** in the menu.
#. Select **Tools | Developer | New Plugin...** in the menu.
#. Save to ``Packages/User/hello_world.py``.

You've just written your first plugin! Let's put it to use:
Expand Down
2 changes: 1 addition & 1 deletion source/extensibility/syntaxdefs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ Creating A New Syntax Definition

To create a new syntax definition, follow these steps:

- Go to **Tools | Packages | Package Development | New Syntax Definition**
- Go to **Tools | Developer | New Syntax...**
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While the change isn't wrong per se, it still causes the following section to be misleading because that still targets the old tmLanguage format (or its YAML variant) instead of the new sublime-syntax format. For consistency with the current version of this document, this should refer to the "PackageDev: New TextMate Syntax Definition (YAML)" command in the palette.

At least until we make a new one for the new format … eventually …

- Save the new file in your :file:`Packages/User` folder as a
``.YAML-tmLanguage`` file.

Expand Down