Skip to content

Commit 8700a4b

Browse files
committed
Mention "View Package File" instead of PackageResourceViewer
1 parent f1b19cb commit 8700a4b

File tree

1 file changed

+4
-5
lines changed
  • docs/guide/extensibility/plugins

1 file changed

+4
-5
lines changed

docs/guide/extensibility/plugins/index.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ import sublime_plugin
183183
from xml.etree import ElementTree as ET
184184
import urllib
185185

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

188188

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

206206
## Learning the API
207207

208-
The API reference is documented at
208+
The API reference is documented at
209209
<https://www.sublimetext.com/docs/api_reference.html>.
210210

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

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

0 commit comments

Comments
 (0)