File tree 1 file changed +4
-5
lines changed
docs/guide/extensibility/plugins
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ import sublime_plugin
183
183
from xml.etree import ElementTree as ET
184
184
import urllib
185
185
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 "
187
187
188
188
189
189
class GoogleAutocomplete (sublime_plugin .EventListener ):
@@ -205,14 +205,13 @@ interfere with the autocompletion system.
205
205
206
206
## Learning the API
207
207
208
- The API reference is documented at
208
+ The API reference is documented at
209
209
< https://www.sublimetext.com/docs/api_reference.html > .
210
210
211
211
To get acquainted with the Sublime Text API and the available commands,
212
212
it may be helpful to read existing code and learn from it.
213
213
214
214
In particular, the ` Packages/Default ` contains many examples of
215
215
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.
You can’t perform that action at this time.
0 commit comments