Trigger actual BH command.
(self)
| 929 | sublime.set_timeout(self.async_execute, 100) |
| 930 | |
| 931 | def async_execute(self): |
| 932 | """Trigger actual BH command.""" |
| 933 | |
| 934 | debug("Async Key Event") |
| 935 | self.bh.match(self.view) |
| 936 | bh_thread.ignore_all = False |
| 937 | bh_thread.time = time() |
| 938 | |
| 939 | |
| 940 | #################### |