| 1039 | } |
| 1040 | |
| 1041 | void AppWindow::onLSPTimerElapsedPython() |
| 1042 | { |
| 1043 | auto *tab = currentWindow(); |
| 1044 | if (tab == nullptr) |
| 1045 | return; |
| 1046 | |
| 1047 | if (SettingsHelper::isLSPUseLintingPython() && tab->getLanguage() == "Python") |
| 1048 | pythonServer->requestLinting(); |
| 1049 | |
| 1050 | lspTimerPython->stop(); |
| 1051 | } |
| 1052 | |
| 1053 | void AppWindow::onSettingsApplied(const QString &pagePath) |
| 1054 | { |
nothing calls this directly
no test coverage detected