(self)
| 24 | |
| 25 | class CodelfFromInputCommand(sublime_plugin.WindowCommand): |
| 26 | def run(self): |
| 27 | # Get the search item |
| 28 | self.window.show_input_panel('Codelf for', '', |
| 29 | self.on_done, self.on_change, self.on_cancel) |
| 30 | |
| 31 | def on_done(self, input): |
| 32 | SearchFor(input) |
nothing calls this directly
no outgoing calls
no test coverage detected