We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f880ea1 commit 2b4cb87Copy full SHA for 2b4cb87
src/gui/mainwindow.cpp
@@ -142,10 +142,12 @@ void MainWindow::neovimError(NeovimConnector::NeovimError err)
142
{
143
switch(err) {
144
case NeovimConnector::FailedToStart:
145
- m_errorWidget->setText("Unable to start nvim: " + m_nvim->errorString());
+ m_errorWidget->setText("Unable to start nvim: " + m_nvim->errorString() + "<br>("
146
+ + m_nvim->connectionDescription() + ")");
147
break;
148
default:
- m_errorWidget->setText(m_nvim->errorString());
149
+ m_errorWidget->setText(
150
+ m_nvim->errorString() + "<br>(" + m_nvim->connectionDescription() + ")");
151
}
152
m_errorWidget->showReconnect(m_nvim->canReconnect());
153
m_stack.setCurrentIndex(0);
0 commit comments