Happens when it would be nice to open a calltip, but not really necessary, for example after an opening bracket, so function calls won't be made.
(self, event)
| 44 | return "break" |
| 45 | |
| 46 | def try_open_calltip_event(self, event): |
| 47 | """Happens when it would be nice to open a calltip, but not really |
| 48 | necessary, for example after an opening bracket, so function calls |
| 49 | won't be made. |
| 50 | """ |
| 51 | self.open_calltip(False) |
| 52 | |
| 53 | def refresh_calltip_event(self, event): |
| 54 | if self.active_calltip and self.active_calltip.tipwindow: |
nothing calls this directly
no test coverage detected