Skip to content

Commit

Permalink
Mention "View Package File" instead of PackageResourceViewer
Browse files Browse the repository at this point in the history
  • Loading branch information
FichteFoll committed Apr 7, 2024
1 parent f1b19cb commit 8700a4b
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions docs/guide/extensibility/plugins/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ import sublime_plugin
from xml.etree import ElementTree as ET
import urllib

GOOGLE_AC = r"http://google.com/complete/search?output=toolbar&q=%s"
GOOGLE_AC = "http://google.com/complete/search?output=toolbar&q=%s"


class GoogleAutocomplete(sublime_plugin.EventListener):
Expand All @@ -205,14 +205,13 @@ interfere with the autocompletion system.

## Learning the API

The API reference is documented at
The API reference is documented at
<https://www.sublimetext.com/docs/api_reference.html>.

To get acquainted with the Sublime Text API and the available commands,
it may be helpful to read existing code and learn from it.

In particular, the `Packages/Default` contains many examples of
undocumented commands and API calls. Note that you will first have to extract
its contents to a folder if you want to take a look at the code within -
[PackageResourceViewer](https://packagecontrol.io/packages/PackageResourceViewer)
helps with this.
its contents to a folder if you want to take a look at the code within.
The *View Package File* command in the Command Palette helps with this.

0 comments on commit 8700a4b

Please sign in to comment.