-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdevdocs.py
40 lines (28 loc) · 1.09 KB
/
devdocs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Written by Vitor Britto ([email protected] / vitorbritto.com.br)
# based on Stackoverflow Search Plugin by Eric Martel ([email protected] / www.ericmartel.com)
import sublime
import sublime_plugin
import subprocess
import webbrowser
def SearchFor(text):
url = 'http://devdocs.io/#q=' + text.replace(' ', '%20')
webbrowser.open_new_tab(url)
class DevDocsSearchSelectionCommand(sublime_plugin.TextCommand):
def run(self, edit):
for selection in self.view.sel():
# if the user didn't select anything, search the currently highlighted word
if selection.empty():
text = self.view.word(selection)
text = self.view.substr(selection)
SearchFor(text)
class DevDocsSearchFromInputCommand(sublime_plugin.WindowCommand):
def run(self):
# Get the search item
self.window.show_input_panel('Search DevDocs for', '',
self.on_done, self.on_change, self.on_cancel)
def on_done(self, input):
SearchFor(input)
def on_change(self, input):
pass
def on_cancel(self):
pass