forked from ericmartel/Sublime-Text-2-Stackoverflow-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStackoverflow.py
43 lines (32 loc) · 1.22 KB
/
Stackoverflow.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
41
42
43
# Written by Eric Martel (emartel@gmail.com / www.ericmartel.com)
# available commands
# stackoverflow_search_selection
# stackoverflow_search_from_input
# changelog
# Eric Martel - first implementation of search selection and search from input
import sublime
import sublime_plugin
import subprocess
import webbrowser
def SearchFor(text):
url = 'http://stackoverflow.com/search?tab=relevance&q=' + text.replace(' ','%20')
webbrowser.open_new_tab(url)
class StackoverflowSearchSelectionCommand(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 StackoverflowSearchFromInputCommand(sublime_plugin.WindowCommand):
def run(self):
# Get the search item
self.window.show_input_panel('Search Stack Overflow 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